Skip to content

Commit fdc59ab

Browse files
build(deps): Bump the all-go group across 5 directories with 6 updates (#2738)
Bumps the all-go group with 3 updates in the / directory: [github.com/celestiaorg/go-square/v3](https://github.com/celestiaorg/go-square), [github.com/libp2p/go-libp2p-kad-dht](https://github.com/libp2p/go-libp2p-kad-dht) and google.golang.org/protobuf. Bumps the all-go group with 2 updates in the /execution/grpc directory: google.golang.org/protobuf and [github.com/evstack/ev-node](https://github.com/evstack/ev-node). Bumps the all-go group with 2 updates in the /sequencers/single directory: google.golang.org/protobuf and [github.com/evstack/ev-node](https://github.com/evstack/ev-node). Bumps the all-go group with 2 updates in the /test/docker-e2e directory: [github.com/celestiaorg/tastora](https://github.com/celestiaorg/tastora) and [github.com/docker/docker](https://github.com/docker/docker). Bumps the all-go group with 1 update in the /test/e2e directory: [github.com/celestiaorg/tastora](https://github.com/celestiaorg/tastora). Updates `github.com/celestiaorg/go-square/v3` from 3.0.1 to 3.0.2 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/celestiaorg/go-square/releases">github.com/celestiaorg/go-square/v3's releases</a>.</em></p> <blockquote> <h2>v3.0.2</h2> <h2>What's Changed</h2> <ul> <li>perf: parallelize creating commitments, use buffers by <a href="https://github.com/mcrakhman"><code>@​mcrakhman</code></a> in <a href="https://redirect.github.com/celestiaorg/go-square/pull/196">celestiaorg/go-square#196</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/mcrakhman"><code>@​mcrakhman</code></a> made their first contribution in <a href="https://redirect.github.com/celestiaorg/go-square/pull/196">celestiaorg/go-square#196</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/celestiaorg/go-square/compare/v3.0.1...v3.0.2">https://github.com/celestiaorg/go-square/compare/v3.0.1...v3.0.2</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/celestiaorg/go-square/commit/ce051a4cf82df52b1429a744da4bf3e11ec161ee"><code>ce051a4</code></a> perf: parallelize creating commitments, use buffers (<a href="https://redirect.github.com/celestiaorg/go-square/issues/196">#196</a>)</li> <li>See full diff in <a href="https://github.com/celestiaorg/go-square/compare/v3.0.1...v3.0.2">compare view</a></li> </ul> </details> <br /> Updates `github.com/libp2p/go-libp2p-kad-dht` from 0.34.0 to 0.35.1 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/libp2p/go-libp2p-kad-dht/releases">github.com/libp2p/go-libp2p-kad-dht's releases</a>.</em></p> <blockquote> <h2>v0.35.1</h2> <h2>Provider Memory Optimizations</h2> <p>Memory optimizations for the <a href="https://github.com/libp2p/go-libp2p-kad-dht/tree/master/provider"><code>provider</code></a>.</p> <h2>What's Changed</h2> <ul> <li>fix(provider): memory usage by <a href="https://github.com/guillaumemichel"><code>@​guillaumemichel</code></a> in <a href="https://redirect.github.com/libp2p/go-libp2p-kad-dht/pull/1163">libp2p/go-libp2p-kad-dht#1163</a></li> <li>feat(provider): use Trie.AddMany by <a href="https://github.com/guillaumemichel"><code>@​guillaumemichel</code></a> in <a href="https://redirect.github.com/libp2p/go-libp2p-kad-dht/pull/1164">libp2p/go-libp2p-kad-dht#1164</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/libp2p/go-libp2p-kad-dht/compare/v0.35.0...v0.35.1">https://github.com/libp2p/go-libp2p-kad-dht/compare/v0.35.0...v0.35.1</a></p> <h2>v0.35.0</h2> <p><!-- raw HTML omitted --><!-- raw HTML omitted --><!-- raw HTML omitted --></p> <blockquote> <p>[!NOTE] This release was brought to you by the <a href="https://ipshipyard.com/">Shipyard</a> team.</p> </blockquote> <h2>🚀 Introducing the New Provider Package</h2> <p>We're excited to introduce the new <a href="https://github.com/libp2p/go-libp2p-kad-dht/tree/master/provider"><code>provider</code></a> package - a complete rethinking of content providing works in the DHT, using the <a href="https://blog.ipfs.tech/2023-09-amino-refactoring/#making-reprovides-to-amino-lightning-fast">Reprovide Sweep</a> technique. <strong>Say goodbye to manual reprovide management!</strong> The provider package now handles both initial provides and periodic reprovides automatically.</p> <h3>🎯 Why This Matters</h3> <p>This package replaces the boxo <a href="https://github.com/ipfs/boxo/blob/69ec427f5a604640cede7fc0a83446b96b1a5891/provider/reprovider.go"><code>provider</code></a> with a significantly more efficient implementation that addresses key performance bottlenecks:</p> <p><strong>Intelligent Batching</strong> 🧠<br /> Instead of providing records randomly, we now batch provides by keyspace distance. This means fewer DHT lookups, faster provides, and consistent reprovide scheduling.</p> <p><strong>Smooth Resource Usage</strong> 📊<br /> Reprovides are evenly distributed over time rather than creating periodic traffic spikes. Your node's resource consumption is now predictable and steady.</p> <h3>⚠️ Early Access</h3> <p>This is the initial release of the provider package. While fully functional, we're continuing to add features and refine the API in upcoming releases. <strong>Expect interface changes</strong> as we iterate based on community feedback.</p> <h3>🔜 What's Next</h3> <p>Stay tuned for additional provider features in future releases. Check the <a href="https://pkg.go.dev/github.com/libp2p/go-libp2p-kad-dht/provider">provider package documentation</a> for usage examples and current capabilities.</p> <h2>What's Changed</h2> <ul> <li>refactor: apply suggestions in records by <a href="https://github.com/guillaumemichel"><code>@​guillaumemichel</code></a> in <a href="https://redirect.github.com/libp2p/go-libp2p-kad-dht/pull/1113">libp2p/go-libp2p-kad-dht#1113</a></li> <li>ci: uci/update-go by <a href="https://github.com/web3-bot"><code>@​web3-bot</code></a> in <a href="https://redirect.github.com/libp2p/go-libp2p-kad-dht/pull/1134">libp2p/go-libp2p-kad-dht#1134</a></li> <li>chore: remove hardcoded go versions from go-test ci by <a href="https://github.com/guillaumemichel"><code>@​guillaumemichel</code></a> in <a href="https://redirect.github.com/libp2p/go-libp2p-kad-dht/pull/1138">libp2p/go-libp2p-kad-dht#1138</a></li> <li>Reprovide Sweep by <a href="https://github.com/guillaumemichel"><code>@​guillaumemichel</code></a> in <a href="https://redirect.github.com/libp2p/go-libp2p-kad-dht/pull/1095">libp2p/go-libp2p-kad-dht#1095</a></li> <li>fix(keystore): use new batch after commit by <a href="https://github.com/guillaumemichel"><code>@​guillaumemichel</code></a> in <a href="https://redirect.github.com/libp2p/go-libp2p-kad-dht/pull/1154">libp2p/go-libp2p-kad-dht#1154</a></li> <li>provider: default options by <a href="https://github.com/guillaumemichel"><code>@​guillaumemichel</code></a> in <a href="https://redirect.github.com/libp2p/go-libp2p-kad-dht/pull/1153">libp2p/go-libp2p-kad-dht#1153</a></li> <li>fix(provider): don't empty mapdatastore keystore on close by <a href="https://github.com/guillaumemichel"><code>@​guillaumemichel</code></a> in <a href="https://redirect.github.com/libp2p/go-libp2p-kad-dht/pull/1155">libp2p/go-libp2p-kad-dht#1155</a></li> <li>refactor(provider): closestPeerToPrefix coverage trie by <a href="https://github.com/guillaumemichel"><code>@​guillaumemichel</code></a> in <a href="https://redirect.github.com/libp2p/go-libp2p-kad-dht/pull/1156">libp2p/go-libp2p-kad-dht#1156</a></li> <li>refactor: remove provider status command by <a href="https://github.com/guillaumemichel"><code>@​guillaumemichel</code></a> in <a href="https://redirect.github.com/libp2p/go-libp2p-kad-dht/pull/1157">libp2p/go-libp2p-kad-dht#1157</a></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/libp2p/go-libp2p-kad-dht/commit/f67e4d8a278d62703f6892be0fc999bba9a31a1f"><code>f67e4d8</code></a> chore: release v0.35.1 (<a href="https://redirect.github.com/libp2p/go-libp2p-kad-dht/issues/1165">#1165</a>)</li> <li><a href="https://github.com/libp2p/go-libp2p-kad-dht/commit/60334580206aaf968db994857136f6c5f28be81a"><code>6033458</code></a> feat(provider): use Trie.AddMany (<a href="https://redirect.github.com/libp2p/go-libp2p-kad-dht/issues/1164">#1164</a>)</li> <li><a href="https://github.com/libp2p/go-libp2p-kad-dht/commit/89159c2b241237c69124187a1ea2bac410423794"><code>89159c2</code></a> fix(provider): memory usage (<a href="https://redirect.github.com/libp2p/go-libp2p-kad-dht/issues/1163">#1163</a>)</li> <li><a href="https://github.com/libp2p/go-libp2p-kad-dht/commit/6e9a59c05736c7b40586ff385c5efc96981b46f8"><code>6e9a59c</code></a> chore: release v0.35.0 (<a href="https://redirect.github.com/libp2p/go-libp2p-kad-dht/issues/1162">#1162</a>)</li> <li><a href="https://github.com/libp2p/go-libp2p-kad-dht/commit/c7dddd0e62855631af54f61d9b7a1c47fe9b839e"><code>c7dddd0</code></a> bump deps (<a href="https://redirect.github.com/libp2p/go-libp2p-kad-dht/issues/1161">#1161</a>)</li> <li><a href="https://github.com/libp2p/go-libp2p-kad-dht/commit/861573b39723ff0522535b9c751a4f723d582a87"><code>861573b</code></a> refactor: adjust FIND_NODE response exceptions (<a href="https://redirect.github.com/libp2p/go-libp2p-kad-dht/issues/1158">#1158</a>)</li> <li><a href="https://github.com/libp2p/go-libp2p-kad-dht/commit/1386e98364db92df4460f5d6666725f225ea487a"><code>1386e98</code></a> refactor: remove provider status command (<a href="https://redirect.github.com/libp2p/go-libp2p-kad-dht/issues/1157">#1157</a>)</li> <li><a href="https://github.com/libp2p/go-libp2p-kad-dht/commit/0114a72e88ba514fd7cdbe7679da43d0c47c602c"><code>0114a72</code></a> refactor(provider): closestPeerToPrefix coverage trie (<a href="https://redirect.github.com/libp2p/go-libp2p-kad-dht/issues/1156">#1156</a>)</li> <li><a href="https://github.com/libp2p/go-libp2p-kad-dht/commit/548e361275f0a38bb219c218b1b630b49a9920c8"><code>548e361</code></a> fix: don't empty mapdatastore keystore on close (<a href="https://redirect.github.com/libp2p/go-libp2p-kad-dht/issues/1155">#1155</a>)</li> <li><a href="https://github.com/libp2p/go-libp2p-kad-dht/commit/3dbfea9aed85c1ff427a717601f3b3f3dee5fb8f"><code>3dbfea9</code></a> provider: default options (<a href="https://redirect.github.com/libp2p/go-libp2p-kad-dht/issues/1153">#1153</a>)</li> <li>Additional commits viewable in <a href="https://github.com/libp2p/go-libp2p-kad-dht/compare/v0.34.0...v0.35.1">compare view</a></li> </ul> </details> <br /> Updates `google.golang.org/protobuf` from 1.36.9 to 1.36.10 Updates `google.golang.org/protobuf` from 1.36.9 to 1.36.10 Updates `github.com/evstack/ev-node` from 1.0.0-beta.5 to 1.0.0-beta.6 <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/evstack/ev-node/commit/79cc0944cfeb0a1576e1c7dfcb1e8c2c3678ae80"><code>79cc094</code></a> refactor(pkg/config)!: move da start height to genesis (<a href="https://redirect.github.com/evstack/ev-node/issues/2727">#2727</a>)</li> <li><a href="https://github.com/evstack/ev-node/commit/c364b1745086a756978088455d2ff9b3b8040b7c"><code>c364b17</code></a> fix(pkg/sync): fix block sync p2p for follower nodes (<a href="https://redirect.github.com/evstack/ev-node/issues/2725">#2725</a>)</li> <li><a href="https://github.com/evstack/ev-node/commit/c045daf2155b7614700c416d88ee75ba1933c6ee"><code>c045daf</code></a> fix(types): add timeout per request in retrieve helper (<a href="https://redirect.github.com/evstack/ev-node/issues/2726">#2726</a>)</li> <li><a href="https://github.com/evstack/ev-node/commit/06792303474fc63ae67fb80ca7a72d6e076bc0d3"><code>0679230</code></a> fix(block/syncing): verify header data hash vs actual data hash (<a href="https://redirect.github.com/evstack/ev-node/issues/2724">#2724</a>)</li> <li><a href="https://github.com/evstack/ev-node/commit/1917bd79c6338764d1beaed5d5ce0a9f6b3d655f"><code>1917bd7</code></a> refactor(block): add retries on SetFinal (<a href="https://redirect.github.com/evstack/ev-node/issues/2721">#2721</a>)</li> <li><a href="https://github.com/evstack/ev-node/commit/bc6a0b147c07e05894b543df3791abd7c6e1a12c"><code>bc6a0b1</code></a> refactor(block): reduce max size in da submitter (<a href="https://redirect.github.com/evstack/ev-node/issues/2720">#2720</a>)</li> <li><a href="https://github.com/evstack/ev-node/commit/a3b4b0d9c8d66d69776352e17181dcab02915e56"><code>a3b4b0d</code></a> fix(block): halt on invalid blocks and wait on unavailable execution client (...</li> <li><a href="https://github.com/evstack/ev-node/commit/1f3212b2faec568318b5e8e519ee348a4456b48f"><code>1f3212b</code></a> fix(pkg/sync): avoid pruning goheader store (<a href="https://redirect.github.com/evstack/ev-node/issues/2718">#2718</a>)</li> <li><a href="https://github.com/evstack/ev-node/commit/94e545ac3001f996fb103495461348916d21dede"><code>94e545a</code></a> build(deps): Bump the all-go group across 6 directories with 5 updates (<a href="https://redirect.github.com/evstack/ev-node/issues/2716">#2716</a>)</li> <li><a href="https://github.com/evstack/ev-node/commit/4f4f2c038547afc23f89a8e455536363aceb0d43"><code>4f4f2c0</code></a> feat(syncer): fetch from p2p and da (<a href="https://redirect.github.com/evstack/ev-node/issues/2712">#2712</a>)</li> <li>Additional commits viewable in <a href="https://github.com/evstack/ev-node/compare/v1.0.0-beta.5...v1.0.0-beta.6">compare view</a></li> </ul> </details> <br /> Updates `google.golang.org/protobuf` from 1.36.9 to 1.36.10 Updates `github.com/evstack/ev-node` from 1.0.0-beta.5 to 1.0.0-beta.6 <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/evstack/ev-node/commit/79cc0944cfeb0a1576e1c7dfcb1e8c2c3678ae80"><code>79cc094</code></a> refactor(pkg/config)!: move da start height to genesis (<a href="https://redirect.github.com/evstack/ev-node/issues/2727">#2727</a>)</li> <li><a href="https://github.com/evstack/ev-node/commit/c364b1745086a756978088455d2ff9b3b8040b7c"><code>c364b17</code></a> fix(pkg/sync): fix block sync p2p for follower nodes (<a href="https://redirect.github.com/evstack/ev-node/issues/2725">#2725</a>)</li> <li><a href="https://github.com/evstack/ev-node/commit/c045daf2155b7614700c416d88ee75ba1933c6ee"><code>c045daf</code></a> fix(types): add timeout per request in retrieve helper (<a href="https://redirect.github.com/evstack/ev-node/issues/2726">#2726</a>)</li> <li><a href="https://github.com/evstack/ev-node/commit/06792303474fc63ae67fb80ca7a72d6e076bc0d3"><code>0679230</code></a> fix(block/syncing): verify header data hash vs actual data hash (<a href="https://redirect.github.com/evstack/ev-node/issues/2724">#2724</a>)</li> <li><a href="https://github.com/evstack/ev-node/commit/1917bd79c6338764d1beaed5d5ce0a9f6b3d655f"><code>1917bd7</code></a> refactor(block): add retries on SetFinal (<a href="https://redirect.github.com/evstack/ev-node/issues/2721">#2721</a>)</li> <li><a href="https://github.com/evstack/ev-node/commit/bc6a0b147c07e05894b543df3791abd7c6e1a12c"><code>bc6a0b1</code></a> refactor(block): reduce max size in da submitter (<a href="https://redirect.github.com/evstack/ev-node/issues/2720">#2720</a>)</li> <li><a href="https://github.com/evstack/ev-node/commit/a3b4b0d9c8d66d69776352e17181dcab02915e56"><code>a3b4b0d</code></a> fix(block): halt on invalid blocks and wait on unavailable execution client (...</li> <li><a href="https://github.com/evstack/ev-node/commit/1f3212b2faec568318b5e8e519ee348a4456b48f"><code>1f3212b</code></a> fix(pkg/sync): avoid pruning goheader store (<a href="https://redirect.github.com/evstack/ev-node/issues/2718">#2718</a>)</li> <li><a href="https://github.com/evstack/ev-node/commit/94e545ac3001f996fb103495461348916d21dede"><code>94e545a</code></a> build(deps): Bump the all-go group across 6 directories with 5 updates (<a href="https://redirect.github.com/evstack/ev-node/issues/2716">#2716</a>)</li> <li><a href="https://github.com/evstack/ev-node/commit/4f4f2c038547afc23f89a8e455536363aceb0d43"><code>4f4f2c0</code></a> feat(syncer): fetch from p2p and da (<a href="https://redirect.github.com/evstack/ev-node/issues/2712">#2712</a>)</li> <li>Additional commits viewable in <a href="https://github.com/evstack/ev-node/compare/v1.0.0-beta.5...v1.0.0-beta.6">compare view</a></li> </ul> </details> <br /> Updates `github.com/celestiaorg/tastora` from 0.5.1 to 0.6.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/celestiaorg/tastora/releases">github.com/celestiaorg/tastora's releases</a>.</em></p> <blockquote> <h2>v0.6.0</h2> <h2>What's Changed</h2> <ul> <li>feat: support for internal port configuration by <a href="https://github.com/chatton"><code>@​chatton</code></a> in <a href="https://redirect.github.com/celestiaorg/tastora/pull/124">celestiaorg/tastora#124</a></li> <li>feat: add support for arbitrarily modifying config by <a href="https://github.com/chatton"><code>@​chatton</code></a> in <a href="https://redirect.github.com/celestiaorg/tastora/pull/132">celestiaorg/tastora#132</a></li> <li>feat: propagate error to caller by <a href="https://github.com/chatton"><code>@​chatton</code></a> in <a href="https://redirect.github.com/celestiaorg/tastora/pull/133">celestiaorg/tastora#133</a></li> <li>feat: support additional port mappings for chain nodes and ensure keys present on all nodes by <a href="https://github.com/chatton"><code>@​chatton</code></a> in <a href="https://redirect.github.com/celestiaorg/tastora/pull/134">celestiaorg/tastora#134</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/celestiaorg/tastora/compare/v0.5.1...v0.6.0">https://github.com/celestiaorg/tastora/compare/v0.5.1...v0.6.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/celestiaorg/tastora/commit/ff64dcbbfb9dfa3d376d5293eabfae5b193b432a"><code>ff64dcb</code></a> feat: support additional port mappings for chain nodes and ensure keys presen...</li> <li><a href="https://github.com/celestiaorg/tastora/commit/4ff6ba218754670c1f2ffbee8245e8e543914e7c"><code>4ff6ba2</code></a> feat: propagate error to caller (<a href="https://redirect.github.com/celestiaorg/tastora/issues/133">#133</a>)</li> <li><a href="https://github.com/celestiaorg/tastora/commit/d6734df4c83b6524790d20bce49a8c295c098c62"><code>d6734df</code></a> feat: add support for arbitrarily modifying config (<a href="https://redirect.github.com/celestiaorg/tastora/issues/132">#132</a>)</li> <li><a href="https://github.com/celestiaorg/tastora/commit/3f8e8d8dc7f22828aaae49d35e10f9f1035a6e85"><code>3f8e8d8</code></a> feat: support for internal port configuration (<a href="https://redirect.github.com/celestiaorg/tastora/issues/124">#124</a>)</li> <li>See full diff in <a href="https://github.com/celestiaorg/tastora/compare/v0.5.1...v0.6.0">compare view</a></li> </ul> </details> <br /> Updates `github.com/docker/docker` from 28.4.0+incompatible to 28.5.0+incompatible <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/docker/docker/releases">github.com/docker/docker's releases</a>.</em></p> <blockquote> <h2>v28.5.0</h2> <h1>28.5.0</h1> <p>For a full list of pull requests and changes in this release, refer to the relevant GitHub milestones:</p> <ul> <li><a href="https://github.com/docker/cli/issues?q=is%3Aclosed+milestone%3A28.5.0">docker/cli, 28.5.0 milestone</a></li> <li><a href="https://github.com/moby/moby/issues?q=is%3Aclosed+milestone%3A28.5.0">moby/moby, 28.5.0 milestone</a></li> <li>Deprecated and removed features, see <a href="https://github.com/docker/cli/blob/v28.5.0/docs/deprecated.md">Deprecated Features</a>.</li> <li>Changes to the Engine API, see <a href="https://github.com/moby/moby/blob/v28.5.0/docs/api/version-history.md">API version history</a>.</li> </ul> <h3>Bug fixes and enhancements</h3> <ul> <li>Don't print warnings in <code>docker info</code> for broken symlinks in CLI-plugin directories. <a href="https://redirect.github.com/docker/cli/pull/6476">docker/cli#6476</a></li> <li>Fix a panic during <code>stats</code> on empty event <code>Actor.ID</code>. <a href="https://redirect.github.com/docker/cli/pull/6471">docker/cli#6471</a></li> </ul> <h3>Packaging updates</h3> <ul> <li>Remove support for legacy CBC cipher suites. <a href="https://redirect.github.com/docker/cli/pull/6474">docker/cli#6474</a></li> <li>Update Buildkit to <a href="https://github.com/moby/buildkit/releases/tag/v0.25.0">v0.25.0</a>. <a href="https://redirect.github.com/moby/moby/pull/51075">moby/moby#51075</a></li> <li>Update Dockerfile syntax to <a href="https://github.com/moby/buildkit/releases/tag/dockerfile%2F1.19.0">v1.19.0</a>. <a href="https://redirect.github.com/moby/moby/pull/51075">moby/moby#51075</a></li> </ul> <h3>Networking</h3> <ul> <li>Eliminated harmless warning about deletion of <code>endpoint_count</code> from the data store. <a href="https://redirect.github.com/moby/moby/pull/51064">moby/moby#51064</a></li> <li>Fix a bug causing IPAM plugins to not be loaded on Windows. <a href="https://redirect.github.com/moby/moby/pull/51035">moby/moby#51035</a></li> </ul> <h3>API</h3> <ul> <li>Deprecate support for kernel memory TCP accounting (<code>KernelMemoryTCP</code>). <a href="https://redirect.github.com/moby/moby/pull/51067">moby/moby#51067</a></li> <li>Fix <code>GET containers/{name}/checkpoints</code> returning <code>null</code> instead of empty JSON array when there are no checkpoints. <a href="https://redirect.github.com/moby/moby/pull/51052">moby/moby#51052</a></li> </ul> <h3>Go SDK</h3> <ul> <li>cli-plugins/plugin: Run: allow customizing the CLI. <a href="https://redirect.github.com/docker/cli/pull/6481">docker/cli#6481</a></li> <li>cli/command: add <code>WithUserAgent</code> option. <a href="https://redirect.github.com/docker/cli/pull/6477">docker/cli#6477</a></li> </ul> <h3>Deprecations</h3> <ul> <li>Go-SDK: cli/command: deprecate <code>DockerCli.Apply</code>. This method is no longer used and will be removed in the next release if there are no remaining uses. <a href="https://redirect.github.com/docker/cli/pull/6497">docker/cli#6497</a></li> <li>Go-SDK: cli/command: deprecate <code>DockerCli.ContentTrustEnabled</code>. This method is no longer used and will be removed in the next release. <a href="https://redirect.github.com/docker/cli/pull/6495">docker/cli#6495</a></li> <li>Go-SDK: cli/command: deprecate <code>DockerCli.DefaultVersion</code>. This method is no longer used and will be removed in the next release. <a href="https://redirect.github.com/docker/cli/pull/6491">docker/cli#6491</a></li> <li>Go-SDK: cli/command: deprecate <code>ResolveDefaultContext</code> utility. <a href="https://redirect.github.com/docker/cli/pull/6529">docker/cli#6529</a></li> <li>Go-SDK: cli/command: deprecate <code>WithContentTrustFromEnv</code>, <code>WithContentTrust</code> options. These options were used internally, and will be removed in the next release.. <a href="https://redirect.github.com/docker/cli/pull/6489">docker/cli#6489</a></li> <li>Go-SDK: cli/manifest/store: deprecate <code>IsNotFound()</code>. <a href="https://redirect.github.com/docker/cli/pull/6514">docker/cli#6514</a></li> <li>Go-SDK: templates: deprecate NewParse() function. <a href="https://redirect.github.com/docker/cli/pull/6469">docker/cli#6469</a></li> </ul> <h2>v28.5.0-rc.1</h2> <h2>28.5.0-rc.1</h2> <p>For a full list of pull requests and changes in this release, refer to the relevant GitHub milestones:</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/moby/moby/commit/cd048300a48700294339c9c91d2dcc691cb8f63b"><code>cd04830</code></a> Merge pull request <a href="https://redirect.github.com/docker/docker/issues/51075">#51075</a> from vvoland/51074-28.x</li> <li><a href="https://github.com/moby/moby/commit/e29d6be7a5126c4677a974cac3b9610e5157c780"><code>e29d6be</code></a> vendor: github.com/moby/buildkit v0.25.0</li> <li><a href="https://github.com/moby/moby/commit/9b4369035bed7dfdc3799484159ca4ed09e04e8e"><code>9b43690</code></a> Merge pull request <a href="https://redirect.github.com/docker/docker/issues/51069">#51069</a> from thaJeztah/28.x_backport_docs_rm_deprecated_vir...</li> <li><a href="https://github.com/moby/moby/commit/4f3572596b4db81e89aa69cbee8741591d77ad47"><code>4f35725</code></a> api: swagger: remove VirtualSize fields for API &gt; v1.43</li> <li><a href="https://github.com/moby/moby/commit/79f310d4bc0272183fdd9fed87b0a6881c185ca2"><code>79f310d</code></a> Merge pull request <a href="https://redirect.github.com/docker/docker/issues/51067">#51067</a> from austinvazquez/cherry-pick-deprecate-kernel-mem...</li> <li><a href="https://github.com/moby/moby/commit/deb4bbbfe09dfea5289d6a410d3c73d8a49a13ac"><code>deb4bbb</code></a> api: deprecate <code>KernelMemoryTCP</code> support</li> <li><a href="https://github.com/moby/moby/commit/423a7fd6af43765bb80d5ab94fcd60c7daa64033"><code>423a7fd</code></a> Merge pull request <a href="https://redirect.github.com/docker/docker/issues/51064">#51064</a> from thaJeztah/28.x_backport_fix_epcnt_warning</li> <li><a href="https://github.com/moby/moby/commit/fbf2fe8b7dc2cc532ef7de136f95016f7f56b267"><code>fbf2fe8</code></a> Eliminate warning about endpoint count store delete</li> <li><a href="https://github.com/moby/moby/commit/252a1ebe7effbc4e7e2272154332111d1fc916b2"><code>252a1eb</code></a> Merge pull request <a href="https://redirect.github.com/docker/docker/issues/51061">#51061</a> from thaJeztah/28.x_backport_rm_email_example</li> <li><a href="https://github.com/moby/moby/commit/2c15eb6617efb30cb828ce1a7133df6aa1689314"><code>2c15eb6</code></a> api/docs: remove email field from example auth</li> <li>Additional commits viewable in <a href="https://github.com/docker/docker/compare/v28.4.0...v28.5.0">compare view</a></li> </ul> </details> <br /> Updates `github.com/celestiaorg/tastora` from 0.5.1 to 0.6.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/celestiaorg/tastora/releases">github.com/celestiaorg/tastora's releases</a>.</em></p> <blockquote> <h2>v0.6.0</h2> <h2>What's Changed</h2> <ul> <li>feat: support for internal port configuration by <a href="https://github.com/chatton"><code>@​chatton</code></a> in <a href="https://redirect.github.com/celestiaorg/tastora/pull/124">celestiaorg/tastora#124</a></li> <li>feat: add support for arbitrarily modifying config by <a href="https://github.com/chatton"><code>@​chatton</code></a> in <a href="https://redirect.github.com/celestiaorg/tastora/pull/132">celestiaorg/tastora#132</a></li> <li>feat: propagate error to caller by <a href="https://github.com/chatton"><code>@​chatton</code></a> in <a href="https://redirect.github.com/celestiaorg/tastora/pull/133">celestiaorg/tastora#133</a></li> <li>feat: support additional port mappings for chain nodes and ensure keys present on all nodes by <a href="https://github.com/chatton"><code>@​chatton</code></a> in <a href="https://redirect.github.com/celestiaorg/tastora/pull/134">celestiaorg/tastora#134</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/celestiaorg/tastora/compare/v0.5.1...v0.6.0">https://github.com/celestiaorg/tastora/compare/v0.5.1...v0.6.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/celestiaorg/tastora/commit/ff64dcbbfb9dfa3d376d5293eabfae5b193b432a"><code>ff64dcb</code></a> feat: support additional port mappings for chain nodes and ensure keys presen...</li> <li><a href="https://github.com/celestiaorg/tastora/commit/4ff6ba218754670c1f2ffbee8245e8e543914e7c"><code>4ff6ba2</code></a> feat: propagate error to caller (<a href="https://redirect.github.com/celestiaorg/tastora/issues/133">#133</a>)</li> <li><a href="https://github.com/celestiaorg/tastora/commit/d6734df4c83b6524790d20bce49a8c295c098c62"><code>d6734df</code></a> feat: add support for arbitrarily modifying config (<a href="https://redirect.github.com/celestiaorg/tastora/issues/132">#132</a>)</li> <li><a href="https://github.com/celestiaorg/tastora/commit/3f8e8d8dc7f22828aaae49d35e10f9f1035a6e85"><code>3f8e8d8</code></a> feat: support for internal port configuration (<a href="https://redirect.github.com/celestiaorg/tastora/issues/124">#124</a>)</li> <li>See full diff in <a href="https://github.com/celestiaorg/tastora/compare/v0.5.1...v0.6.0">compare view</a></li> </ul> </details> <br /> 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 <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions </details> --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: tac0turtle <[email protected]>
1 parent 184f42f commit fdc59ab

File tree

20 files changed

+301
-283
lines changed

20 files changed

+301
-283
lines changed

apps/evm/single/go.mod

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ replace (
1414
require (
1515
github.com/celestiaorg/go-header v0.7.3
1616
github.com/ethereum/go-ethereum v1.16.4
17-
github.com/evstack/ev-node v1.0.0-beta.5
17+
github.com/evstack/ev-node v1.0.0-beta.6
1818
github.com/evstack/ev-node/core v1.0.0-beta.3
1919
github.com/evstack/ev-node/da v0.0.0-20250317130407-e9e0a1b0485e
2020
github.com/evstack/ev-node/execution/evm v0.0.0-00010101000000-000000000000
@@ -32,7 +32,7 @@ require (
3232
github.com/beorn7/perks v1.0.1 // indirect
3333
github.com/bits-and-blooms/bitset v1.20.0 // indirect
3434
github.com/celestiaorg/go-libp2p-messenger v0.2.2 // indirect
35-
github.com/celestiaorg/go-square/v3 v3.0.1 // indirect
35+
github.com/celestiaorg/go-square/v3 v3.0.2 // indirect
3636
github.com/cespare/xxhash/v2 v2.3.0 // indirect
3737
github.com/consensys/gnark-crypto v0.18.0 // indirect
3838
github.com/crate-crypto/go-eth-kzg v1.4.0 // indirect
@@ -73,10 +73,10 @@ require (
7373
github.com/holiman/uint256 v1.3.2 // indirect
7474
github.com/huin/goupnp v1.3.0 // indirect
7575
github.com/inconshreveable/mousetrap v1.1.0 // indirect
76-
github.com/ipfs/boxo v0.33.1 // indirect
76+
github.com/ipfs/boxo v0.35.0 // indirect
7777
github.com/ipfs/go-cid v0.5.0 // indirect
7878
github.com/ipfs/go-ds-badger4 v0.1.8 // indirect
79-
github.com/ipfs/go-log/v2 v2.8.0 // indirect
79+
github.com/ipfs/go-log/v2 v2.8.1 // indirect
8080
github.com/ipld/go-ipld-prime v0.21.0 // indirect
8181
github.com/jackpal/go-nat-pmp v1.0.2 // indirect
8282
github.com/jbenet/go-temp-err-catcher v0.1.0 // indirect
@@ -88,8 +88,8 @@ require (
8888
github.com/libp2p/go-flow-metrics v0.3.0 // indirect
8989
github.com/libp2p/go-libp2p v0.43.0 // indirect
9090
github.com/libp2p/go-libp2p-asn-util v0.4.1 // indirect
91-
github.com/libp2p/go-libp2p-kad-dht v0.34.0 // indirect
92-
github.com/libp2p/go-libp2p-kbucket v0.7.0 // indirect
91+
github.com/libp2p/go-libp2p-kad-dht v0.35.1 // indirect
92+
github.com/libp2p/go-libp2p-kbucket v0.8.0 // indirect
9393
github.com/libp2p/go-libp2p-pubsub v0.15.0 // indirect
9494
github.com/libp2p/go-libp2p-record v0.3.1 // indirect
9595
github.com/libp2p/go-libp2p-routing-helpers v0.7.5 // indirect
@@ -116,7 +116,7 @@ require (
116116
github.com/multiformats/go-multicodec v0.9.2 // indirect
117117
github.com/multiformats/go-multihash v0.2.3 // indirect
118118
github.com/multiformats/go-multistream v0.6.1 // indirect
119-
github.com/multiformats/go-varint v0.0.7 // indirect
119+
github.com/multiformats/go-varint v0.1.0 // indirect
120120
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
121121
github.com/olekukonko/tablewriter v0.0.5 // indirect
122122
github.com/pbnjay/memory v0.0.0-20210728143218-7b4eea64cf58 // indirect
@@ -169,7 +169,7 @@ require (
169169
github.com/whyrusleeping/go-keyspace v0.0.0-20160322163242-5b898ac5add1 // indirect
170170
github.com/wlynxg/anet v0.0.5 // indirect
171171
go.opencensus.io v0.24.0 // indirect
172-
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
172+
go.opentelemetry.io/auto/sdk v1.2.1 // indirect
173173
go.opentelemetry.io/otel v1.38.0 // indirect
174174
go.opentelemetry.io/otel/metric v1.38.0 // indirect
175175
go.opentelemetry.io/otel/trace v1.38.0 // indirect
@@ -178,20 +178,21 @@ require (
178178
go.uber.org/mock v0.5.2 // indirect
179179
go.uber.org/multierr v1.11.0 // indirect
180180
go.uber.org/zap v1.27.0 // indirect
181-
go.yaml.in/yaml/v2 v2.4.2 // indirect
181+
go.yaml.in/yaml/v2 v2.4.3 // indirect
182182
go.yaml.in/yaml/v3 v3.0.4 // indirect
183183
golang.org/x/crypto v0.42.0 // indirect
184-
golang.org/x/exp v0.0.0-20250811191247-51f88131bc50 // indirect
185-
golang.org/x/mod v0.27.0 // indirect
184+
golang.org/x/exp v0.0.0-20250911091902-df9299821621 // indirect
185+
golang.org/x/mod v0.28.0 // indirect
186186
golang.org/x/net v0.44.0 // indirect
187187
golang.org/x/sync v0.17.0 // indirect
188188
golang.org/x/sys v0.36.0 // indirect
189+
golang.org/x/telemetry v0.0.0-20250908211612-aef8a434d053 // indirect
189190
golang.org/x/text v0.29.0 // indirect
190191
golang.org/x/time v0.12.0 // indirect
191-
golang.org/x/tools v0.36.0 // indirect
192+
golang.org/x/tools v0.37.0 // indirect
192193
golang.org/x/xerrors v0.0.0-20240903120638-7835f813f4da // indirect
193194
gonum.org/v1/gonum v0.16.0 // indirect
194-
google.golang.org/protobuf v1.36.9 // indirect
195+
google.golang.org/protobuf v1.36.10 // indirect
195196
gopkg.in/yaml.v2 v2.4.0 // indirect
196197
gopkg.in/yaml.v3 v3.0.1 // indirect
197198
lukechampine.com/blake3 v1.4.1 // indirect

apps/evm/single/go.sum

Lines changed: 30 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ github.com/bradfitz/go-smtpd v0.0.0-20170404230938-deb6d6237625/go.mod h1:HYsPBT
3434
github.com/buger/jsonparser v0.0.0-20181115193947-bf1c66bbce23/go.mod h1:bbYlZJ7hK1yFx9hf58LP0zeX7UjIGs20ufpu3evjr+s=
3535
github.com/celestiaorg/go-libp2p-messenger v0.2.2 h1:osoUfqjss7vWTIZrrDSy953RjQz+ps/vBFE7bychLEc=
3636
github.com/celestiaorg/go-libp2p-messenger v0.2.2/go.mod h1:oTCRV5TfdO7V/k6nkx7QjQzGrWuJbupv+0o1cgnY2i4=
37-
github.com/celestiaorg/go-square/v3 v3.0.1 h1:44xnE3AUiZn/3q/uJ0c20AezFS0lywFTGG2lE/9jYKA=
38-
github.com/celestiaorg/go-square/v3 v3.0.1/go.mod h1:Xc4ubl/7pbn/STD7w8Bnk/X1/PG3vk0ycOPW6tMOPX4=
37+
github.com/celestiaorg/go-square/v3 v3.0.2 h1:eSQOgNII8inK9IhiBZ+6GADQeWbRq4HYY72BOgcduA4=
38+
github.com/celestiaorg/go-square/v3 v3.0.2/go.mod h1:oFReMLsSDMRs82ICFEeFQFCqNvwdsbIM1BzCcb0f7dM=
3939
github.com/celestiaorg/utils v0.1.0 h1:WsP3O8jF7jKRgLNFmlDCwdThwOFMFxg0MnqhkLFVxPo=
4040
github.com/celestiaorg/utils v0.1.0/go.mod h1:vQTh7MHnvpIeCQZ2/Ph+w7K1R2UerDheZbgJEJD2hSU=
4141
github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU=
@@ -215,10 +215,10 @@ github.com/huin/goupnp v1.3.0 h1:UvLUlWDNpoUdYzb2TCn+MuTWtcjXKSza2n6CBdQ0xXc=
215215
github.com/huin/goupnp v1.3.0/go.mod h1:gnGPsThkYa7bFi/KWmEysQRf48l2dvR5bxr2OFckNX8=
216216
github.com/inconshreveable/mousetrap v1.1.0 h1:wN+x4NVGpMsO7ErUn/mUI3vEoE6Jt13X2s0bqwp9tc8=
217217
github.com/inconshreveable/mousetrap v1.1.0/go.mod h1:vpF70FUmC8bwa3OWnCshd2FqLfsEA9PFc4w1p2J65bw=
218-
github.com/ipfs/boxo v0.33.1 h1:89m+ksw+cYi0ecTNTJ71IRS5ZrLiovmO6XWHIOGhAEg=
219-
github.com/ipfs/boxo v0.33.1/go.mod h1:KwlJTzv5fb1GLlA9KyMqHQmvP+4mrFuiE3PnjdrPJHs=
220-
github.com/ipfs/go-block-format v0.2.2 h1:uecCTgRwDIXyZPgYspaLXoMiMmxQpSx2aq34eNc4YvQ=
221-
github.com/ipfs/go-block-format v0.2.2/go.mod h1:vmuefuWU6b+9kIU0vZJgpiJt1yicQz9baHXE8qR+KB8=
218+
github.com/ipfs/boxo v0.35.0 h1:3Mku5arSbAZz0dvb4goXRsQuZkFkPrGr5yYdu0YM1pY=
219+
github.com/ipfs/boxo v0.35.0/go.mod h1:uhaF0DGnbgEiXDTmD249jCGbxVkMm6+Ew85q6Uub7lo=
220+
github.com/ipfs/go-block-format v0.2.3 h1:mpCuDaNXJ4wrBJLrtEaGFGXkferrw5eqVvzaHhtFKQk=
221+
github.com/ipfs/go-block-format v0.2.3/go.mod h1:WJaQmPAKhD3LspLixqlqNFxiZ3BZ3xgqxxoSR/76pnA=
222222
github.com/ipfs/go-cid v0.5.0 h1:goEKKhaGm0ul11IHA7I6p1GmKz8kEYniqFopaB5Otwg=
223223
github.com/ipfs/go-cid v0.5.0/go.mod h1:0L7vmeNXpQpUS9vt+yEARkJ8rOg43DF3iPgn4GIN0mk=
224224
github.com/ipfs/go-datastore v0.9.0 h1:WocriPOayqalEsueHv6SdD4nPVl4rYMfYGLD4bqCZ+w=
@@ -227,10 +227,10 @@ github.com/ipfs/go-detect-race v0.0.1 h1:qX/xay2W3E4Q1U7d9lNs1sU9nvguX0a7319XbyQ
227227
github.com/ipfs/go-detect-race v0.0.1/go.mod h1:8BNT7shDZPo99Q74BpGMK+4D8Mn4j46UU0LZ723meps=
228228
github.com/ipfs/go-ds-badger4 v0.1.8 h1:frNczf5CjCVm62RJ5mW5tD/oLQY/9IKAUpKviRV9QAI=
229229
github.com/ipfs/go-ds-badger4 v0.1.8/go.mod h1:FdqSLA5TMsyqooENB/Hf4xzYE/iH0z/ErLD6ogtfMrA=
230-
github.com/ipfs/go-log/v2 v2.8.0 h1:SptNTPJQV3s5EF4FdrTu/yVdOKfGbDgn1EBZx4til2o=
231-
github.com/ipfs/go-log/v2 v2.8.0/go.mod h1:2LEEhdv8BGubPeSFTyzbqhCqrwqxCbuTNTLWqgNAipo=
232-
github.com/ipfs/go-test v0.2.2 h1:1yjYyfbdt1w93lVzde6JZ2einh3DIV40at4rVoyEcE8=
233-
github.com/ipfs/go-test v0.2.2/go.mod h1:cmLisgVwkdRCnKu/CFZOk2DdhOcwghr5GsHeqwexoRA=
230+
github.com/ipfs/go-log/v2 v2.8.1 h1:Y/X36z7ASoLJaYIJAL4xITXgwf7RVeqb1+/25aq/Xk0=
231+
github.com/ipfs/go-log/v2 v2.8.1/go.mod h1:NyhTBcZmh2Y55eWVjOeKf8M7e4pnJYM3yDZNxQBWEEY=
232+
github.com/ipfs/go-test v0.2.3 h1:Z/jXNAReQFtCYyn7bsv/ZqUwS6E7iIcSpJ2CuzCvnrc=
233+
github.com/ipfs/go-test v0.2.3/go.mod h1:QW8vSKkwYvWFwIZQLGQXdkt9Ud76eQXRQ9Ao2H+cA1o=
234234
github.com/ipld/go-ipld-prime v0.21.0 h1:n4JmcpOlPDIxBcY037SVfpd1G+Sj1nKZah0m6QH9C2E=
235235
github.com/ipld/go-ipld-prime v0.21.0/go.mod h1:3RLqy//ERg/y5oShXXdx5YIp50cFGOanyMctpPjsvxQ=
236236
github.com/jackpal/go-nat-pmp v1.0.2 h1:KzKSgb7qkJvOUTqYl9/Hg/me3pWgBmERKrTGD7BdWus=
@@ -275,10 +275,10 @@ github.com/libp2p/go-libp2p v0.43.0 h1:b2bg2cRNmY4HpLK8VHYQXLX2d3iND95OjodLFymvq
275275
github.com/libp2p/go-libp2p v0.43.0/go.mod h1:IiSqAXDyP2sWH+J2gs43pNmB/y4FOi2XQPbsb+8qvzc=
276276
github.com/libp2p/go-libp2p-asn-util v0.4.1 h1:xqL7++IKD9TBFMgnLPZR6/6iYhawHKHl950SO9L6n94=
277277
github.com/libp2p/go-libp2p-asn-util v0.4.1/go.mod h1:d/NI6XZ9qxw67b4e+NgpQexCIiFYJjErASrYW4PFDN8=
278-
github.com/libp2p/go-libp2p-kad-dht v0.34.0 h1:yvJ/Vrt36GVjsqPxiGcuuwOloKuZLV9Aa7awIKyNXy0=
279-
github.com/libp2p/go-libp2p-kad-dht v0.34.0/go.mod h1:JNbkES4W5tajS6uYivw6MPs0842cPHAwhgaPw8sQG4o=
280-
github.com/libp2p/go-libp2p-kbucket v0.7.0 h1:vYDvRjkyJPeWunQXqcW2Z6E93Ywx7fX0jgzb/dGOKCs=
281-
github.com/libp2p/go-libp2p-kbucket v0.7.0/go.mod h1:blOINGIj1yiPYlVEX0Rj9QwEkmVnz3EP8LK1dRKBC6g=
278+
github.com/libp2p/go-libp2p-kad-dht v0.35.1 h1:RQglhc9OxqDwlFFdhQMwKxIPBIBfGsleROnK5hqVsoE=
279+
github.com/libp2p/go-libp2p-kad-dht v0.35.1/go.mod h1:1oCXzkkBiYh3d5cMWLpInSOZ6am2AlpC4G+GDcZFcE0=
280+
github.com/libp2p/go-libp2p-kbucket v0.8.0 h1:QAK7RzKJpYe+EuSEATAaaHYMYLkPDGC18m9jxPLnU8s=
281+
github.com/libp2p/go-libp2p-kbucket v0.8.0/go.mod h1:JMlxqcEyKwO6ox716eyC0hmiduSWZZl6JY93mGaaqc4=
282282
github.com/libp2p/go-libp2p-pubsub v0.15.0 h1:cG7Cng2BT82WttmPFMi50gDNV+58K626m/wR00vGL1o=
283283
github.com/libp2p/go-libp2p-pubsub v0.15.0/go.mod h1:lr4oE8bFgQaifRcoc2uWhWWiK6tPdOEKpUuR408GFN4=
284284
github.com/libp2p/go-libp2p-record v0.3.1 h1:cly48Xi5GjNw5Wq+7gmjfBiG9HCzQVkiZOUZ8kUl+Fg=
@@ -352,8 +352,8 @@ github.com/multiformats/go-multihash v0.2.3 h1:7Lyc8XfX/IY2jWb/gI7JP+o7JEq9hOa7B
352352
github.com/multiformats/go-multihash v0.2.3/go.mod h1:dXgKXCXjBzdscBLk9JkjINiEsCKRVch90MdaGiKsvSM=
353353
github.com/multiformats/go-multistream v0.6.1 h1:4aoX5v6T+yWmc2raBHsTvzmFhOI8WVOer28DeBBEYdQ=
354354
github.com/multiformats/go-multistream v0.6.1/go.mod h1:ksQf6kqHAb6zIsyw7Zm+gAuVo57Qbq84E27YlYqavqw=
355-
github.com/multiformats/go-varint v0.0.7 h1:sWSGR+f/eu5ABZA2ZpYKBILXTTs9JWpdEM/nEGOHFS8=
356-
github.com/multiformats/go-varint v0.0.7/go.mod h1:r8PUYw/fD/SjBCiKOoDlGF6QawOELpZAu9eioSos/OU=
355+
github.com/multiformats/go-varint v0.1.0 h1:i2wqFp4sdl3IcIxfAonHQV9qU5OsZ4Ts9IOoETFs5dI=
356+
github.com/multiformats/go-varint v0.1.0/go.mod h1:5KVAVXegtfmNQQm/lCY+ATvDzvJJhSkUlGQV9wgObdI=
357357
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 h1:C3w9PqII01/Oq1c1nUAm88MOHcQC9l5mIlSMApZMrHA=
358358
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822/go.mod h1:+n7T8mK8HuQTcFwEeznm/DIxMOiR9yIdICNftLE1DvQ=
359359
github.com/neelance/astrewrite v0.0.0-20160511093645-99348263ae86/go.mod h1:kHJEU3ofeGjhHklVoIGuVj85JJwZ6kWPaJwCIxgnFmo=
@@ -547,8 +547,8 @@ github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5t
547547
go.opencensus.io v0.18.0/go.mod h1:vKdFvxhtzZ9onBp9VKHK8z/sRpBMnKAsufL7wlDrCOA=
548548
go.opencensus.io v0.24.0 h1:y73uSU6J157QMP2kn2r30vwW1A2W2WFwSCGnAVxeaD0=
549549
go.opencensus.io v0.24.0/go.mod h1:vNK8G9p7aAivkbmorf4v+7Hgx+Zs0yY+0fOtgBfjQKo=
550-
go.opentelemetry.io/auto/sdk v1.1.0 h1:cH53jehLUN6UFLY71z+NDOiNJqDdPRaXzTel0sJySYA=
551-
go.opentelemetry.io/auto/sdk v1.1.0/go.mod h1:3wSPjt5PWp2RhlCcmmOial7AvC4DQqZb7a7wCow3W8A=
550+
go.opentelemetry.io/auto/sdk v1.2.1 h1:jXsnJ4Lmnqd11kwkBV2LgLoFMZKizbCi5fNZ/ipaZ64=
551+
go.opentelemetry.io/auto/sdk v1.2.1/go.mod h1:KRTj+aOaElaLi+wW1kO/DZRXwkF4C5xPbEe3ZiIhN7Y=
552552
go.opentelemetry.io/otel v1.38.0 h1:RkfdswUDRimDg0m2Az18RKOsnI8UDzppJAtj01/Ymk8=
553553
go.opentelemetry.io/otel v1.38.0/go.mod h1:zcmtmQ1+YmQM9wrNsTGV/q/uyusom3P8RxwExxkZhjM=
554554
go.opentelemetry.io/otel/metric v1.38.0 h1:Kl6lzIYGAh5M159u9NgiRkmoMKjvbsKtYRwgfrA6WpA=
@@ -567,8 +567,8 @@ go.uber.org/multierr v1.11.0 h1:blXXJkSxSSfBVBlC76pxqeO+LN3aDfLQo+309xJstO0=
567567
go.uber.org/multierr v1.11.0/go.mod h1:20+QtiLqy0Nd6FdQB9TLXag12DsQkrbs3htMFfDN80Y=
568568
go.uber.org/zap v1.27.0 h1:aJMhYGrd5QSmlpLMr2MftRKl7t8J8PTZPA732ud/XR8=
569569
go.uber.org/zap v1.27.0/go.mod h1:GB2qFLM7cTU87MWRP2mPIjqfIDnGu+VIO4V/SdhGo2E=
570-
go.yaml.in/yaml/v2 v2.4.2 h1:DzmwEr2rDGHl7lsFgAHxmNz/1NlQ7xLIrlN2h5d1eGI=
571-
go.yaml.in/yaml/v2 v2.4.2/go.mod h1:081UH+NErpNdqlCXm3TtEran0rJZGxAYx9hb/ELlsPU=
570+
go.yaml.in/yaml/v2 v2.4.3 h1:6gvOSjQoTB3vt1l+CU+tSyi/HOjfOjRLJ4YwYZGwRO0=
571+
go.yaml.in/yaml/v2 v2.4.3/go.mod h1:zSxWcmIDjOzPXpjlTTbAsKokqkDNAVtZO0WOMiT90s8=
572572
go.yaml.in/yaml/v3 v3.0.4 h1:tfq32ie2Jv2UxXFdLJdh3jXuOzWiL1fo0bu/FbuKpbc=
573573
go.yaml.in/yaml/v3 v3.0.4/go.mod h1:DhzuOOF2ATzADvBadXxruRBLzYTpT36CKvDb3+aBEFg=
574574
go4.org v0.0.0-20180809161055-417644f6feb5/go.mod h1:MkTOUMDaeVYJUOUsaDXIhWPZYa1yOyC1qaOBpL57BhE=
@@ -588,8 +588,8 @@ golang.org/x/crypto v0.18.0/go.mod h1:R0j02AL6hcrfOiy9T4ZYp/rcWeMxM3L6QYxlOuEG1m
588588
golang.org/x/crypto v0.42.0 h1:chiH31gIWm57EkTXpwnqf8qeuMUi0yekh6mT2AvFlqI=
589589
golang.org/x/crypto v0.42.0/go.mod h1:4+rDnOTJhQCx2q7/j6rAN5XDw8kPjeaXEUR2eL94ix8=
590590
golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA=
591-
golang.org/x/exp v0.0.0-20250811191247-51f88131bc50 h1:3yiSh9fhy5/RhCSntf4Sy0Tnx50DmMpQ4MQdKKk4yg4=
592-
golang.org/x/exp v0.0.0-20250811191247-51f88131bc50/go.mod h1:rT6SFzZ7oxADUDx58pcaKFTcZ+inxAa9fTrYx/uVYwg=
591+
golang.org/x/exp v0.0.0-20250911091902-df9299821621 h1:2id6c1/gto0kaHYyrixvknJ8tUK/Qs5IsmBtrc+FtgU=
592+
golang.org/x/exp v0.0.0-20250911091902-df9299821621/go.mod h1:TwQYMMnGpvZyc+JpB/UAuTNIsVJifOlSkrZkhcvpVUk=
593593
golang.org/x/lint v0.0.0-20180702182130-06c8688daad7/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE=
594594
golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE=
595595
golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMCusXpPoU=
@@ -600,8 +600,8 @@ golang.org/x/mod v0.2.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA=
600600
golang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA=
601601
golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91VN4djpZkiMVwK6gcyfeH4XE8wZrZaV4=
602602
golang.org/x/mod v0.8.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs=
603-
golang.org/x/mod v0.27.0 h1:kb+q2PyFnEADO2IEF935ehFUXlWiNjJWtRNgBLSfbxQ=
604-
golang.org/x/mod v0.27.0/go.mod h1:rWI627Fq0DEoudcK+MBkNkCe0EetEaDSwJJkCcjpazc=
603+
golang.org/x/mod v0.28.0 h1:gQBtGhjxykdjY9YhZpSlZIsbnaE2+PgjfLWUQTnoZ1U=
604+
golang.org/x/mod v0.28.0/go.mod h1:yfB/L0NOf/kmEbXjzCPOx1iK1fRutOydrCMsqRhEBxI=
605605
golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
606606
golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
607607
golang.org/x/net v0.0.0-20180906233101-161cd47e91fd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
@@ -667,6 +667,8 @@ golang.org/x/sys v0.12.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
667667
golang.org/x/sys v0.16.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
668668
golang.org/x/sys v0.36.0 h1:KVRy2GtZBrk1cBYA7MKu5bEZFxQk4NIDV6RLVcC8o0k=
669669
golang.org/x/sys v0.36.0/go.mod h1:OgkHotnGiDImocRcuBABYBEXf8A9a87e/uXjp9XT3ks=
670+
golang.org/x/telemetry v0.0.0-20250908211612-aef8a434d053 h1:dHQOQddU4YHS5gY33/6klKjq7Gp3WwMyOXGNp5nzRj8=
671+
golang.org/x/telemetry v0.0.0-20250908211612-aef8a434d053/go.mod h1:+nZKN+XVh4LCiA9DV3ywrzN4gumyCnKjau3NGb9SGoE=
670672
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
671673
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8=
672674
golang.org/x/term v0.5.0/go.mod h1:jMB1sMXY+tzblOD4FWmEbocvup2/aLOaQEp7JmGp78k=
@@ -702,8 +704,8 @@ golang.org/x/tools v0.0.0-20200619180055-7c47624df98f/go.mod h1:EkVYQZoAsY45+roY
702704
golang.org/x/tools v0.0.0-20210106214847-113979e3529a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA=
703705
golang.org/x/tools v0.1.12/go.mod h1:hNGJHUnrk76NpqgfD5Aqm5Crs+Hm0VOH/i9J2+nxYbc=
704706
golang.org/x/tools v0.6.0/go.mod h1:Xwgl3UAJ/d3gWutnCtw505GrjyAbvKui8lOU390QaIU=
705-
golang.org/x/tools v0.36.0 h1:kWS0uv/zsvHEle1LbV5LE8QujrxB3wfQyxHfhOk0Qkg=
706-
golang.org/x/tools v0.36.0/go.mod h1:WBDiHKJK8YgLHlcQPYQzNCkUxUypCaa5ZegCVutKm+s=
707+
golang.org/x/tools v0.37.0 h1:DVSRzp7FwePZW356yEAChSdNcQo6Nsp+fex1SUW09lE=
708+
golang.org/x/tools v0.37.0/go.mod h1:MBN5QPQtLMHVdvsbtarmTNukZDdgwdwlO5qGacAzF0w=
707709
golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
708710
golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
709711
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
@@ -743,8 +745,8 @@ google.golang.org/protobuf v1.22.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2
743745
google.golang.org/protobuf v1.23.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU=
744746
google.golang.org/protobuf v1.23.1-0.20200526195155-81db48ad09cc/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU=
745747
google.golang.org/protobuf v1.25.0/go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlbajtzgsN7c=
746-
google.golang.org/protobuf v1.36.9 h1:w2gp2mA27hUeUzj9Ex9FBjsBm40zfaDtEWow293U7Iw=
747-
google.golang.org/protobuf v1.36.9/go.mod h1:fuxRtAxBytpl4zzqUh6/eyUujkJdNiuEkXntxiD/uRU=
748+
google.golang.org/protobuf v1.36.10 h1:AYd7cD/uASjIL6Q9LiTjz8JLcrh/88q5UObnmY3aOOE=
749+
google.golang.org/protobuf v1.36.10/go.mod h1:HTf+CrKn2C3g5S8VImy6tdcUvCska2kB7j23XfzDpco=
748750
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
749751
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk=
750752
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q=

0 commit comments

Comments
 (0)