Skip to content

build(deps): bump the all-dependencies group across 1 directory with 6 updates#81

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/go_modules/all-dependencies-ea48da6d03
Open

build(deps): bump the all-dependencies group across 1 directory with 6 updates#81
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/go_modules/all-dependencies-ea48da6d03

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 16, 2026

Bumps the all-dependencies group with 3 updates in the / directory: github.com/ipfs/boxo, github.com/mattn/go-sqlite3 and go.sia.tech/renterd/v2.

Updates github.com/ipfs/boxo from 0.35.2 to 0.37.0

Release notes

Sourced from github.com/ipfs/boxo's releases.

v0.37.0

[!NOTE] This release was brought to you by the Shipyard team.

What's Changed

Added

  • ipld/unixfs/io: added SizeEstimationMode for configurable HAMT sharding threshold decisions. Supports legacy link-based estimation (SizeEstimationLinks), accurate block-based estimation (SizeEstimationBlock), or disabling size-based thresholds (SizeEstimationDisabled). #1088, IPIP-499
  • ipld/unixfs/io: added UnixFSProfile with UnixFS_v0_2015 and UnixFS_v1_2025 presets for CID-deterministic file and directory DAG construction. #1088, IPIP-499
  • files: NewSerialFileWithOptions now supports controlling whether symlinks are preserved or dereferenced before being added to IPFS. See SerialFileOptions.DereferenceSymlinks. #1088, IPIP-499

Changed

  • 🛠 chunker, ipld/unixfs/importer/helpers: block size limits raised from 1MiB to 2MiB to match the bitswap spec. Max chunker size is 2MiB - 256 bytes to leave room for protobuf framing when --raw-leaves=false. IPIP-499 profiles use lower chunk sizes (256KiB and 1MiB) and are not affected.
  • 🛠 chunker: DefaultBlockSize changed from const to var to allow runtime configuration via global profiles. #1088, IPIP-499
  • gateway: 🛠 ✨ IPIP-523 ?format= URL query parameter now takes precedence over Accept HTTP header, ensuring deterministic HTTP cache behavior and allowing browsers to use ?format= even when they send Accept headers with specific content types. #1074
  • gateway: 🛠 ✨ IPIP-524 codec conversions (e.g., dag-pb to dag-json, dag-json to dag-cbor) are no longer performed by default. Requesting a format that differs from the block's codec now returns HTTP 406 Not Acceptable with a hint to fetch raw blocks (?format=raw) and convert client-side. Set Config.AllowCodecConversion to true to restore the old behavior. #1077
  • gateway: compliance with gateway-conformance v0.10.0 (since v0.8: relaxed DAG-CBOR HTML preview cache headers, relaxed CAR 200/404 for missing paths, IPIP-523 format query precedence, IPIP-524 codec mismatch returns 406)
  • upgrade to go-ipld-prime v0.22.0
  • upgrade to go-libp2p-kad-dht v0.38.0

Removed

  • tracing: opentelemetry zipkin exporter (go.opentelemetry.io/otel/exporters/zipkin) is deprecated and has been removed. It is recommended to switch to OTLP. Configure your application to send traces using OTLP and enable Zipkin’s OTLP ingestion support.

Fixed

  • 🛠 ipld/unixfs/io: fixed HAMT sharding threshold comparison to use > instead of >=. A directory exactly at the threshold now stays as a basic (flat) directory, aligning behavior with code documentation and the JS implementation. This is a theoretical breaking change, but unlikely to impact real-world users as it requires a directory to be exactly at the threshold boundary. If you depend on the old behavior, adjust HAMTShardingSize to be 1 byte lower. #1088, IPIP-499
  • ipld/unixfs/mod: fixed sparse file writes in MFS. Writing past the end of a file (e.g., ipfs files write --offset 1000 /file on a smaller file) would lose data because expandSparse created the zero-padding node but didn't update the internal pointer. Subsequent writes went to the old unexpanded node.
  • ipld/unixfs/io: fixed mode/mtime metadata loss during Basic<->HAMT directory conversions. Previously, directories with WithStat(mode, mtime) would lose this metadata when converting between basic and sharded formats, or when reloading a HAMT directory from disk.

Full Changelog: ipfs/boxo@v0.36.0...v0.37.0

v0.36.0

What's Changed

Added

  • routing/http: GET /routing/v1/dht/closest/peers/{key} per IPIP-476
  • ipld/merkledag: Added fetched node size reporting to the progress tracker. See kubo#8915
  • gateway: Added a configurable fallback timeout for the gateway handler, defaulting to 1 hour. Configurable via MaxRequestDuration in the gateway config.

Changed

  • keystore: improve error messages and include key file name #1080

... (truncated)

Changelog

Sourced from github.com/ipfs/boxo's changelog.

[v0.37.0]

Added

  • ipld/unixfs/io: added SizeEstimationMode for configurable HAMT sharding threshold decisions. Supports legacy link-based estimation (SizeEstimationLinks), accurate block-based estimation (SizeEstimationBlock), or disabling size-based thresholds (SizeEstimationDisabled). #1088, IPIP-499
  • ipld/unixfs/io: added UnixFSProfile with UnixFS_v0_2015 and UnixFS_v1_2025 presets for CID-deterministic file and directory DAG construction. #1088, IPIP-499
  • files: NewSerialFileWithOptions now supports controlling whether symlinks are preserved or dereferenced before being added to IPFS. See SerialFileOptions.DereferenceSymlinks. #1088, IPIP-499

Changed

  • 🛠 chunker, ipld/unixfs/importer/helpers: block size limits raised from 1MiB to 2MiB to match the bitswap spec. Max chunker size is 2MiB - 256 bytes to leave room for protobuf framing when --raw-leaves=false. IPIP-499 profiles use lower chunk sizes (256KiB and 1MiB) and are not affected.
  • 🛠 chunker: DefaultBlockSize changed from const to var to allow runtime configuration via global profiles. #1088, IPIP-499
  • gateway: 🛠 ✨ IPIP-523 ?format= URL query parameter now takes precedence over Accept HTTP header, ensuring deterministic HTTP cache behavior and allowing browsers to use ?format= even when they send Accept headers with specific content types. #1074
  • gateway: 🛠 ✨ IPIP-524 codec conversions (e.g., dag-pb to dag-json, dag-json to dag-cbor) are no longer performed by default. Requesting a format that differs from the block's codec now returns HTTP 406 Not Acceptable with a hint to fetch raw blocks (?format=raw) and convert client-side. Set Config.AllowCodecConversion to true to restore the old behavior. #1077
  • gateway: compliance with gateway-conformance v0.10.0 (since v0.8: relaxed DAG-CBOR HTML preview cache headers, relaxed CAR 200/404 for missing paths, IPIP-523 format query precedence, IPIP-524 codec mismatch returns 406)
  • upgrade to go-ipld-prime v0.22.0
  • upgrade to go-libp2p-kad-dht v0.38.0

Removed

  • tracing: opentelemetry zipkin exporter (go.opentelemetry.io/otel/exporters/zipkin) is deprecated and has been removed. It is recommended to switch to OTLP. Configure your application to send traces using OTLP and enable Zipkin’s OTLP ingestion support.

Fixed

  • 🛠 ipld/unixfs/io: fixed HAMT sharding threshold comparison to use > instead of >=. A directory exactly at the threshold now stays as a basic (flat) directory, aligning behavior with code documentation and the JS implementation. This is a theoretical breaking change, but unlikely to impact real-world users as it requires a directory to be exactly at the threshold boundary. If you depend on the old behavior, adjust HAMTShardingSize to be 1 byte lower. #1088, IPIP-499
  • ipld/unixfs/mod: fixed sparse file writes in MFS. Writing past the end of a file (e.g., ipfs files write --offset 1000 /file on a smaller file) would lose data because expandSparse created the zero-padding node but didn't update the internal pointer. Subsequent writes went to the old unexpanded node.
  • ipld/unixfs/io: fixed mode/mtime metadata loss during Basic<->HAMT directory conversions. Previously, directories with WithStat(mode, mtime) would lose this metadata when converting between basic and sharded formats, or when reloading a HAMT directory from disk.

[v0.36.0]

Added

  • routing/http: GET /routing/v1/dht/closest/peers/{key} per IPIP-476
  • ipld/merkledag: Added fetched node size reporting to the progress tracker. See kubo#8915
  • gateway: Added a configurable fallback timeout for the gateway handler, defaulting to 1 hour. Configurable via MaxRequestDuration in the gateway config.

Changed

  • keystore: improve error messages and include key file name #1080
  • upgrade to go-libp2p-kad-dht v0.37.1
  • upgrade to go-libp2p v0.47.0

Fixed

  • bitswap/network: Fixed goroutine leak that could cause bitswap to stop serving blocks after extended uptime. The root cause is stream.Close() blocking indefinitely when remote peers are unresponsive during multistream handshake (go-libp2p#3448). This PR (#1083) adds a localized fix specific to bitswap's SendMessage by setting a read deadline before closing streams.
Commits

Updates github.com/ipfs/go-datastore from 0.9.0 to 0.9.1

Release notes

Sourced from github.com/ipfs/go-datastore's releases.

v0.9.1

What's Changed

Full Changelog: ipfs/go-datastore@v0.9.0...v0.9.1

Commits

Updates github.com/libp2p/go-libp2p from 0.46.0 to 0.47.0

Release notes

Sourced from github.com/libp2p/go-libp2p's releases.

v0.47.0

A relatively small release. The main changes are dependency updates and a couple of bug fixes. #3435 changes autonatv2 reachability logic, which should be a net win for most users.

Breaking Changes

  • A WebTransport Client in this version cannot dial older (pre v0.47.0) go-libp2p WebTransport servers. The reverse works. This is partly due to a handshake change in the latest draft RFC for WebTransport. WebTransport remains experimental while the RFC is in draft, but we expect no more breaking changes.
  • AllAddrs() Actually returns all interface addresses when listening on 0.0.0.0. See libp2p/go-libp2p#3460 for more context. This changes an earlier intentional decision from libp2p/go-libp2p#911.

What's Changed

New Contributors

Full Changelog: libp2p/go-libp2p@v0.46.0...v0.47.0

Commits
  • b93eda0 Release v0.47.0 (#3454)
  • 1239354 rcmgr: expose resource limits to Prometheus (#3433)
  • dd26469 update webtransport-go to v0.10.0 and quic-go to v0.59.0 (#3452)f
  • 636d44e fix: handle error from mh.Sum in IDFromPublicKey
  • 2bed145 update quic-go to v0.58.0
  • bcc2bf1 fix(basic_host): set read deadline before multistream Close to prevent blocking
  • 479b24b mod tidy test-plans package (#3450)
  • 6c4273f update simnet dependency
  • 61bc00c rename simconlibp2p package to simlibp2p
  • f4e714c simlibp2p: add GetBasicHostPair helper
  • Additional commits viewable in compare view

Updates github.com/libp2p/go-libp2p-kad-dht from 0.37.0 to 0.38.0

Release notes

Sourced from github.com/libp2p/go-libp2p-kad-dht's releases.

v0.38.0

What's Changed

Full Changelog: libp2p/go-libp2p-kad-dht@v0.37.1...v0.38.0

v0.37.1

What's Changed

Full Changelog: libp2p/go-libp2p-kad-dht@v0.37.0...v0.37.1

Commits
  • 0d9f9f6 Release v0.38.0 (#1236)
  • 5cbddc6 update go-datastore to v0.9.1 (#1235)
  • c013eac chore(deps): bump github.com/pion/dtls/v3 from 3.1.0 to 3.1.1 (#1234)
  • a9412b2 chore(deps): bump github.com/pion/dtls/v3 from 3.0.6 to 3.1.0 (#1232)
  • 4ea2e7d fix(provider/keystore): protect keystore size during reset (#1227)
  • bdbaca7 update dependencies and minimum go version (#1230)
  • a3ccf46 refactor: apply go fix modernizers from Go 1.26 (#1231)
  • c59fde6 chore: go-libdht org transfer (#1229)
  • e9e1b98 fix(provider): close datastore results (#1226)
  • dfdf80a chore: add issue templates with need/triage label
  • Additional commits viewable in compare view

Updates github.com/mattn/go-sqlite3 from 1.14.33 to 1.14.34

Commits

Updates go.sia.tech/renterd/v2 from 2.7.1 to 2.8.1

Release notes

Sourced from go.sia.tech/renterd/v2's releases.

v2.8.1

Fixes

  • Fixed instant sync in SQLite causing crashes.

v2.8.0

Features

Add support for instant syncing

New users can sync instantly using renterd --instant. When instant syncing, the renterd node initializes using a Utreexo-based checkpoint and can immediately validate blocks from that point forward without replaying the whole chain state. The state is extremely compact and committed in block headers, making this initialization both quick and secure.

Learn more

The wallet is required to only have v2 history to use instant syncing.

Fixes

  • Reduce memory pressure when fetching contract roots for pruning.
  • Update core dependency to v0.19.0 and coreutils dependency v0.20.0.

v2.8.0-beta.2

Features

Add support for instant syncing

New users can sync instantly using renterd --instant. When instant syncing, the renterd node initializes using a Utreexo-based checkpoint and can immediately validate blocks from that point forward without replaying the whole chain state. The state is extremely compact and committed in block headers, making this initialization both quick and secure.

Learn more

The wallet is required to only have v2 history to use instant syncing.

Fixes

  • Reduce memory pressure when fetching contract roots for pruning.
  • Update core dependency to v0.19.0 and coreutils dependency v0.20.0.

v2.8.0-beta.1

Features

Add support for instant sync

New users can sync instantly using renterd --instant. When instant syncing, the renterd node initializes using a Utreexo-based checkpoint and can immediately validate blocks from that point forward without replaying the whole chain state. The state is extremely compact and committed in block headers, making this initialization both quick and secure. Learn more

The wallet is required to only have v2 history to use instant syncing.

Fixes

  • Update core dependency to v0.19.0 and coreutils dependency v0.20.0.
Changelog

Sourced from go.sia.tech/renterd/v2's changelog.

2.8.1 (2026-02-06)

Fixes

  • Fixed instant sync in SQLite causing crashes.

2.8.0 (2026-02-03)

Features

Add support for instant syncing

New users can sync instantly using renterd --instant. When instant syncing, the renterd node initializes using a Utreexo-based checkpoint and can immediately validate blocks from that point forward without replaying the whole chain state. The state is extremely compact and committed in block headers, making this initialization both quick and secure.

Learn more

The wallet is required to only have v2 history to use instant syncing.

Fixes

  • Reduce memory pressure when fetching contract roots for pruning.
  • Update core dependency to v0.19.0 and coreutils dependency v0.20.0.
Commits

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 commands and options

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 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

@dependabot dependabot bot added dependencies Pull requests that update a dependency file go Pull requests that update go code labels Feb 16, 2026
@socket-security
Copy link

socket-security bot commented Feb 16, 2026

@socket-security
Copy link

socket-security bot commented Feb 16, 2026

Warning

Review the following alerts detected in dependencies.

According to your organization's Security Policy, it is recommended to resolve "Warn" alerts. Learn more about Socket for GitHub.

Action Severity Alert  (click "▶" to expand/collapse)
Warn High
Obfuscated code: golang go.sia.tech/renterd/v2 is 98.0% likely obfuscated

Confidence: 0.98

Location: Package overview

From: go.modgolang/go.sia.tech/renterd/v2@v2.8.1

ℹ Read more on: This package | This alert | What is obfuscated code?

Next steps: Take a moment to review the security alert above. Review the linked package source code to understand the potential risk. Ensure the package is not malicious before proceeding. If you're unsure how to proceed, reach out to your security team or ask the Socket team for help at support@socket.dev.

Suggestion: Packages should not obfuscate their code. Consider not using packages with obfuscated code.

Mark the package as acceptable risk. To ignore this alert only in this pull request, reply with the comment @SocketSecurity ignore golang/go.sia.tech/renterd/v2@v2.8.1. You can also ignore all packages with @SocketSecurity ignore-all. To ignore an alert for all future pull requests, use Socket's Dashboard to change the triage state of this alert.

View full report

…6 updates

Bumps the all-dependencies group with 3 updates in the / directory: [github.com/ipfs/boxo](https://github.com/ipfs/boxo), [github.com/mattn/go-sqlite3](https://github.com/mattn/go-sqlite3) and [go.sia.tech/renterd/v2](https://github.com/SiaFoundation/renterd).


Updates `github.com/ipfs/boxo` from 0.35.2 to 0.37.0
- [Release notes](https://github.com/ipfs/boxo/releases)
- [Changelog](https://github.com/ipfs/boxo/blob/main/CHANGELOG.md)
- [Commits](ipfs/boxo@v0.35.2...v0.37.0)

Updates `github.com/ipfs/go-datastore` from 0.9.0 to 0.9.1
- [Release notes](https://github.com/ipfs/go-datastore/releases)
- [Commits](ipfs/go-datastore@v0.9.0...v0.9.1)

Updates `github.com/libp2p/go-libp2p` from 0.46.0 to 0.47.0
- [Release notes](https://github.com/libp2p/go-libp2p/releases)
- [Changelog](https://github.com/libp2p/go-libp2p/blob/master/CHANGELOG.md)
- [Commits](libp2p/go-libp2p@v0.46.0...v0.47.0)

Updates `github.com/libp2p/go-libp2p-kad-dht` from 0.37.0 to 0.38.0
- [Release notes](https://github.com/libp2p/go-libp2p-kad-dht/releases)
- [Commits](libp2p/go-libp2p-kad-dht@v0.37.0...v0.38.0)

Updates `github.com/mattn/go-sqlite3` from 1.14.33 to 1.14.34
- [Release notes](https://github.com/mattn/go-sqlite3/releases)
- [Commits](mattn/go-sqlite3@v1.14.33...v1.14.34)

Updates `go.sia.tech/renterd/v2` from 2.7.1 to 2.8.1
- [Release notes](https://github.com/SiaFoundation/renterd/releases)
- [Changelog](https://github.com/SiaFoundation/renterd/blob/master/CHANGELOG.md)
- [Commits](SiaFoundation/renterd@v2.7.1...v2.8.1)

---
updated-dependencies:
- dependency-name: github.com/ipfs/boxo
  dependency-version: 0.37.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: github.com/ipfs/go-datastore
  dependency-version: 0.9.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: github.com/libp2p/go-libp2p
  dependency-version: 0.47.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: github.com/libp2p/go-libp2p-kad-dht
  dependency-version: 0.38.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: github.com/mattn/go-sqlite3
  dependency-version: 1.14.34
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: go.sia.tech/renterd/v2
  dependency-version: 2.8.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/go_modules/all-dependencies-ea48da6d03 branch from 7a81cda to 03b157d Compare February 26, 2026 08:44
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file go Pull requests that update go code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants