Skip to content

Commit

Permalink
chore(deps): Bump github.com/ipfs/boxo from 0.15.0 to 0.16.0 (celesti…
Browse files Browse the repository at this point in the history
…aorg#3057)

Bumps [github.com/ipfs/boxo](https://github.com/ipfs/boxo) from 0.15.0
to 0.16.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.16.0</h2>
<h2>Changed</h2>
<ul>
<li>🛠 <code>boxo/namesys</code>: now fails when multiple valid DNSLink
entries are found for the same domain. This used to cause undefined
behavior before. Now, we return an error, according to the <a
href="https://dnslink.dev/">specification</a>.</li>
</ul>
<h2>Removed</h2>
<ul>
<li>🛠 <code>boxo/gateway</code>: removed support for undocumented legacy
<code>ipfs-404.html</code>. Use <a
href="https://specs.ipfs.tech/http-gateways/web-redirects-file/"><code>_redirects</code></a>
instead.</li>
<li>🛠 <code>boxo/namesys</code>: removed support for legacy DNSLink
entries at the root of the domain. Use <a
href="https://docs.ipfs.tech/concepts/dnslink/"><code>_dnslink.</code>
TXT record</a> instead.</li>
<li>🛠 <code>boxo/coreapi</code>, an intrinsic part of Kubo, has been
removed and moved to <code>kubo/core/coreiface</code>.</li>
</ul>
<h2>Fixed</h2>
<ul>
<li><code>boxo/gateway</code>
<ul>
<li>a panic (which is recovered) could sporadically be triggered inside
a CAR request, if the right <a
href="https://github.com/ipfs/boxo/pull/511">conditions were
met</a>.</li>
<li>no longer emits <code>http: superfluous response.WriteHeader</code>
warnings when an error happens.</li>
</ul>
</li>
</ul>
<h2>What's Changed</h2>
<ul>
<li>Merge Release v0.15.0 by <a
href="https://github.com/hacdias"><code>@​hacdias</code></a> in <a
href="https://github.com/ipfs/boxo/pull/506">ipfs/boxo#506</a></li>
<li>feat: remove support for legacy ipfs-404.html by <a
href="https://github.com/hacdias"><code>@​hacdias</code></a> in <a
href="https://github.com/ipfs/boxo/pull/509">ipfs/boxo#509</a></li>
<li>fix: gateway panic because of overshadowed err by <a
href="https://github.com/hacdias"><code>@​hacdias</code></a> in <a
href="https://github.com/ipfs/boxo/pull/511">ipfs/boxo#511</a></li>
<li>fix(namesys): handling of multiple DNSLink TXT records by <a
href="https://github.com/hacdias"><code>@​hacdias</code></a> in <a
href="https://github.com/ipfs/boxo/pull/510">ipfs/boxo#510</a></li>
<li>fix: all go-log import to v2 by <a
href="https://github.com/Dreamacro"><code>@​Dreamacro</code></a> in <a
href="https://github.com/ipfs/boxo/pull/513">ipfs/boxo#513</a></li>
<li>bitswap/client: explain what the options do by <a
href="https://github.com/hsanjuan"><code>@​hsanjuan</code></a> in <a
href="https://github.com/ipfs/boxo/pull/488">ipfs/boxo#488</a></li>
<li>fix(gateway): do not act on template errors by <a
href="https://github.com/hacdias"><code>@​hacdias</code></a> in <a
href="https://github.com/ipfs/boxo/pull/515">ipfs/boxo#515</a></li>
<li>coreiface: remove and move to Kubo by <a
href="https://github.com/hacdias"><code>@​hacdias</code></a> in <a
href="https://github.com/ipfs/boxo/pull/517">ipfs/boxo#517</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/Dreamacro"><code>@​Dreamacro</code></a>
made their first contribution in <a
href="https://github.com/ipfs/boxo/pull/513">ipfs/boxo#513</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/ipfs/boxo/compare/v0.15.0...v0.16.0">https://github.com/ipfs/boxo/compare/v0.15.0...v0.16.0</a></p>
</blockquote>
</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.16.0]</h2>
<h3>Changed</h3>
<ul>
<li>🛠 <code>boxo/namesys</code>: now fails when multiple valid DNSLink
entries are found for the same domain. This used to cause undefined
behavior before. Now, we return an error, according to the <a
href="https://dnslink.dev/">specification</a>.</li>
</ul>
<h3>Removed</h3>
<ul>
<li>🛠 <code>boxo/gateway</code>: removed support for undocumented legacy
<code>ipfs-404.html</code>. Use <a
href="https://specs.ipfs.tech/http-gateways/web-redirects-file/"><code>_redirects</code></a>
instead.</li>
<li>🛠 <code>boxo/namesys</code>: removed support for legacy DNSLink
entries at the root of the domain. Use <a
href="https://docs.ipfs.tech/concepts/dnslink/"><code>_dnslink.</code>
TXT record</a> instead.</li>
<li>🛠 <code>boxo/coreapi</code>, an intrinsic part of Kubo, has been
removed and moved to <code>kubo/core/coreiface</code>.</li>
</ul>
<h3>Fixed</h3>
<ul>
<li><code>boxo/gateway</code>
<ul>
<li>a panic (which is recovered) could sporadically be triggered inside
a CAR request, if the right <a
href="https://github.com/ipfs/boxo/pull/511">conditions were
met</a>.</li>
<li>no longer emits <code>http: superfluous response.WriteHeader</code>
warnings when an error happens.</li>
</ul>
</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/ipfs/boxo/commit/709c7c65d35ad0091225e2dabfa7fae78a0acb8b"><code>709c7c6</code></a>
Merge pull request <a
href="https://github.com/ipfs/boxo/issues/518">#518</a> from
ipfs/release-v0.16.0</li>
<li><a
href="https://github.com/ipfs/boxo/commit/df09068f8878c724c6a84f3e4c4f52a1f9379cf4"><code>df09068</code></a>
chore: bump to 0.16.0</li>
<li><a
href="https://github.com/ipfs/boxo/commit/9afc46a13622f757e0f0790369094607dfab3223"><code>9afc46a</code></a>
changelog: prepare 0.16.0</li>
<li><a
href="https://github.com/ipfs/boxo/commit/08959f281f866bd4197b40bc90cf75c2828c07f0"><code>08959f2</code></a>
coreiface: remove and move to Kubo</li>
<li><a
href="https://github.com/ipfs/boxo/commit/d06f7ff88c69f32d31d6116a7b055fb703d70f87"><code>d06f7ff</code></a>
fix(gateway): no duplicate WriteHeader calls (<a
href="https://github.com/ipfs/boxo/issues/515">#515</a>)</li>
<li><a
href="https://github.com/ipfs/boxo/commit/438b8a69d0306ecdbabb2ea446b984498a7c227d"><code>438b8a6</code></a>
bitswap/client: explain what the options do</li>
<li><a
href="https://github.com/ipfs/boxo/commit/fe55533ef0a22ad8da3ff01fe662f8954ae05810"><code>fe55533</code></a>
fix: all go-log import to v2</li>
<li><a
href="https://github.com/ipfs/boxo/commit/50f8a0850960b2a7853a1ad26be297aa0c3b5e39"><code>50f8a08</code></a>
test: positive and negative test for multi dnslink</li>
<li><a
href="https://github.com/ipfs/boxo/commit/006c1c9f83428937b3e43339192f989472947661"><code>006c1c9</code></a>
changelog: add namesys entries</li>
<li><a
href="https://github.com/ipfs/boxo/commit/7b5207adc6e06494437758d9620d1f5fcde5876a"><code>7b5207a</code></a>
feat!: remove support for legacy root dnslink, plumb errors</li>
<li>Additional commits viewable in <a
href="https://github.com/ipfs/boxo/compare/v0.15.0...v0.16.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.15.0&new-version=0.16.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 <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] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored and renaynay committed Jan 15, 2024
1 parent 0085588 commit 317a6b9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion 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.15.0
github.com/ipfs/boxo v0.16.0
github.com/ipfs/go-block-format v0.2.0
github.com/ipfs/go-cid v0.4.1
github.com/ipfs/go-datastore v0.6.0
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -1038,8 +1038,8 @@ github.com/influxdata/usage-client v0.0.0-20160829180054-6d3895376368/go.mod h1:
github.com/ipfs/bbloom v0.0.1/go.mod h1:oqo8CVWsJFMOZqTglBG4wydCE4IQA/G2/SEofB0rjUI=
github.com/ipfs/bbloom v0.0.4 h1:Gi+8EGJ2y5qiD5FbsbpX/TMNcJw8gSqr7eyjHa4Fhvs=
github.com/ipfs/bbloom v0.0.4/go.mod h1:cS9YprKXpoZ9lT0n/Mw/a6/aFV6DTjTLYHeA+gyqMG0=
github.com/ipfs/boxo v0.15.0 h1:BriLydj2nlK1nKeJQHxcKSuG5ZXcoutzhBklOtxC5pk=
github.com/ipfs/boxo v0.15.0/go.mod h1:X5ulcbR5Nh7sm3Db8+08AApUo6FsGC5mb23QDKAoB/M=
github.com/ipfs/boxo v0.16.0 h1:A9dUmef5a+mEFki6kbyG7el5gl65CiUBzrDeZxzTWKY=
github.com/ipfs/boxo v0.16.0/go.mod h1:jAgpNQn7T7BnibUeReXcKU9Ha1xmYNyOlwVEl193ow0=
github.com/ipfs/go-bitfield v1.0.0/go.mod h1:N/UiujQy+K+ceU1EF5EkVd1TNqevLrCQMIcAEPrdtus=
github.com/ipfs/go-bitfield v1.1.0 h1:fh7FIo8bSwaJEh6DdTWbCeZ1eqOaOkKFI74SCnsWbGA=
github.com/ipfs/go-bitfield v1.1.0/go.mod h1:paqf1wjq/D2BBmzfTVFlJQ9IlFOZpg422HL0HqsGWHU=
Expand Down

0 comments on commit 317a6b9

Please sign in to comment.