Note
This release was brought to you by the Shipyard team.
- ๐ฆ Highlights
- ๐ข IPIP-499: UnixFS CID Profiles
- ๐งน Automatic cleanup of interrupted imports
- ๐ Light clients can now use your node for delegated routing
- ๐ See total size when pinning
- ๐ IPIP-523:
?format=takes precedence overAcceptheader - ๐ซ IPIP-524: Gateway codec conversion disabled by default
- โ More reliable IPNS over PubSub
- ๐๏ธ New
ipfs diag datastorecommands - ๐ New
ipfs swarm addrs autonatcommand - ๐ Improved
ipfs p2ptunnels with foreground mode - ๐ Friendlier
ipfs dag statoutput - ๐
ipfs keyimprovements - ๐ค More reliable content providing after startup
- ๐ No unnecessary DNS lookups for AutoTLS addresses
- โฑ๏ธ Configurable gateway request duration limit
- ๐ง Recovery from corrupted MFS root
- ๐ก RPC
Content-Typeheaders for binary responses - ๐ New
ipfs name get|putcommands - ๐ Long listing format for
ipfs ls - ๐ฅ๏ธ WebUI Improvements
- ๐ Fixed Prometheus metrics bloat on popular subdomain gateways
- ๐ข libp2p announces all interface addresses
- ๐๏ธ Badger v1 datastore slated for removal this year
- ๐น Go 1.26
- ๐ฆ๏ธ Dependency updates
- ๐ Changelog
- ๐จโ๐ฉโ๐งโ๐ฆ Contributors
๐ฆ Highlights
This release brings reproducible file imports (CID Profiles), cleanup of interrupted flatfs operations, better connectivity diagnostics, and improved gateway behavior. It also ships with Go 1.26, lowering memory usage and GC overhead across the board.
๐ข IPIP-499: UnixFS CID Profiles
CID Profiles are presets that pin down how files get split into blocks and organized into directories, so you get the same CID for the same data across different software or versions. Defined in IPIP-499.
New configuration profiles
unixfs-v1-2025: modern CIDv1 profile with improved defaultsunixfs-v0-2015(aliaslegacy-cid-v0): best-effort legacy CIDv0 behavior
Apply with: ipfs config profile apply unixfs-v1-2025
The test-cid-v1 and test-cid-v1-wide profiles have been removed. Use unixfs-v1-2025 or manually set specific Import.* settings instead.
New Import.* options
Import.UnixFSHAMTDirectorySizeEstimation: estimation mode (links,block, ordisabled)Import.UnixFSDAGLayout: DAG layout (balancedortrickle)
New ipfs add CLI flags
--dereference-symlinksresolves all symlinks to their target content, replacing the deprecated--dereference-argswhich only resolved CLI argument symlinks--empty-dirs/-Econtrols inclusion of empty directories (default: true)--hidden/-Hincludes hidden files (default: false)--trickleimplicit default can be adjusted viaImport.UnixFSDAGLayout
ipfs files write fix for CIDv1 directories
When writing to MFS directories that use CIDv1 (via --cid-version=1 or ipfs files chcid), single-block files now produce raw block CIDs (like bafkrei...), matching the behavior of ipfs add --raw-leaves. Previously, MFS would wrap single-block files in dag-pb even when raw leaves were enabled. CIDv0 directories continue to use dag-pb.
Block size limit raised to 2MiB
ipfs block put, ipfs dag put, and ipfs dag import now accept blocks up to 2MiB without --allow-big-block, matching the bitswap spec. The previous 1MiB limit was too restrictive and broke ipfs dag import of 1MiB-chunked non-raw-leaf data (protobuf wrapping pushes blocks slightly over 1MiB). The max --chunker value for ipfs add is 2MiB - 256 bytes to leave room for protobuf framing. IPIP-499 profiles use lower chunk sizes (256KiB and 1MiB) and are not affected.
HAMT Threshold Fix
HAMT directory sharding threshold changed from >= to > to match the Go docs and JS implementation (ipfs/boxo@6707376). A directory exactly at 256 KiB now stays as a basic directory instead of converting to HAMT. 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 Import.UnixFSHAMTShardingSize to be 1 byte lower.
๐งน Automatic cleanup of interrupted imports
If you cancel ipfs add or ipfs dag import mid-operation, Kubo now automatically cleans up incomplete data on the next daemon start. Previously, interrupted imports would leave orphan blocks in your repository that were difficult to identify and remove without pins and running explicit garbage collection.
Batch operations also use less memory now. Block data is written to disk immediately rather than held in RAM until the batch commits.
Under the hood, the block storage layer (flatfs) was rewritten to use atomic batch operations via a temporary staging directory. See go-ds-flatfs#142 for details.
๐ Light clients can now use your node for delegated routing
The Routing V1 HTTP API is now exposed by default at http://127.0.0.1:8080/routing/v1. This allows light clients in browsers to use Kubo Gateway as a delegated routing backend instead of running a full DHT client. Support for IPIP-476: Delegated Routing DHT Closest Peers API is included. Can be disabled via Gateway.ExposeRoutingAPI.
๐ See total size when pinning
ipfs pin add --progress now shows the total size of the pinned DAG as it fetches blocks.
Example output:
Fetched/Processed 336 nodes (83 MB)
๐ IPIP-523: ?format= takes precedence over Accept header
The ?format= URL query parameter now always wins over the Accept header (IPIP-523), giving you deterministic HTTP caching and protecting against CDN cache-key collisions. Browsers can also use ?format= reliably even when they send Accept headers with specific content types.
The only breaking change is for edge cases where a client sends both a specific Accept header and a different ?format= value for an explicitly supported format (tar, raw, car, dag-json, dag-cbor, etc.). Previously Accept would win. Now ?format= always wins.
๐ซ IPIP-524: Gateway codec conversion disabled by default
Gateways no longer convert between codecs by default (IPIP-524). This removes gateways from a gatekeeping role: clients can adopt new codecs immediately without waiting for gateway operator updates. Requests for a format that differs from the block's codec now return 406 Not Acceptable.
Migration: Clients should fetch raw blocks (?format=raw or Accept: application/vnd.ipld.raw)
and convert client-side using libraries like @helia/verified-fetch.
Set Gateway.AllowCodecConversion
to true to restore previous behavior.
โ More reliable IPNS over PubSub
IPNS over PubSub implementation in Kubo is now more reliable. Duplicate messages are rejected even in large networks where messages may cycle back after the in-memory cache expires.
Kubo now persists the maximum seen sequence number per peer to the datastore (go-libp2p-pubsub#BasicSeqnoValidator), providing stronger duplicate detection that survives node restarts. This addresses message flooding issues reported in #9665.
IPNS over PubSub is opt-in via Ipns.UsePubsub. Kubo's pubsub is optimized for IPNS use case. For custom pubsub applications requiring different validation logic, use go-libp2p-pubsub directly in a dedicated binary.
๐๏ธ New ipfs diag datastore commands
New experimental commands for low-level datastore inspection:
ipfs diag datastore get <key>- Read raw value at a datastore key (use--hexfor hex dump)ipfs diag datastore count <prefix>- Count entries matching a datastore prefix
The daemon must not be running when using these commands. Run ipfs diag datastore --help for usage examples.
๐ New ipfs swarm addrs autonat command
The new ipfs swarm addrs autonat command shows the network reachability status of your node's addresses as verified by AutoNAT V2. AutoNAT V2 leverages other nodes in the IPFS network to test your node's external public reachability, providing a self-service way to debug connectivity.
Public reachability is important for:
- Direct data fetching: Other nodes can fetch data directly from your node without NAT hole punching.
- Browser access: Web browsers can connect to your node directly for content retrieval.
- DHT participation: Your node can act as a DHT server, helping to maintain the distributed hash table and making content routing more robust.
The command displays:
- Overall reachability status (public, private, or unknown)
- Per-address reachability showing which specific addresses are reachable, unreachable, or unknown
Example output:
AutoNAT V2 Status:
Reachability: public
Per-Address Reachability:
Reachable:
/ip4/203.0.113.42/tcp/4001
/ip4/203.0.113.42/udp/4001/quic-v1
Unreachable:
/ip6/2001:db8::1/tcp/4001
Unknown:
/ip4/203.0.113.42/udp/4001/webrtc-direct
This helps diagnose connectivity issues and understand if your node is publicly reachable. See the AutoNAT V2 spec for more details.
๐ Improved ipfs p2p tunnels with foreground mode
P2P tunnels can now run like SSH port forwarding: start a tunnel, use it, and it cleans up automatically when you're done.
The new --foreground (-f) flag for ipfs p2p listen and ipfs p2p forward keeps the command running until interrupted. When you Ctrl+C, send SIGTERM, or stop the service, the tunnel is removed automatically:
$ ipfs p2p listen /x/ssh /ip4/127.0.0.1/tcp/22 --foreground
Listening on /x/ssh, forwarding to /ip4/127.0.0.1/tcp/22, waiting for interrupt...
^C
Received interrupt, removing listener for /x/sshWithout --foreground, commands return immediately and tunnels persist until explicitly closed (existing behavior).
See docs/p2p-tunnels.md for usage examples.
๐ Friendlier ipfs dag stat output
The ipfs dag stat command has been improved for better terminal UX:
- Progress output now uses a single line with carriage return, avoiding terminal flooding
- Progress is auto-detected: shown only in interactive terminals by default
- Human-readable sizes are now displayed alongside raw byte counts
Example progress (interactive terminal):
Fetched/Processed 84 blocks, 2097152 bytes (2.1 MB)
Example summary output:
Summary
Total Size: 2097152 (2.1 MB)
Unique Blocks: 42
Shared Size: 1048576 (1.0 MB)
Ratio: 1.500000
Use --progress=true to force progress even when piped, or --progress=false to disable it.
๐ ipfs key improvements
ipfs key ls is now the canonical command for listing keys, matching ipfs pin ls and ipfs files ls. The old ipfs key list still works but is deprecated.
Listing also became more resilient: bad keys are now skipped with an error log instead of failing the entire operation.
๐ค More reliable content providing after startup
Previously, provide operations could start before the Accelerated DHT Client discovered enough peers, causing sweep mode to lose its efficiency benefits. Now, providing waits for the initial network crawl (about 10 minutes). Your content will be properly distributed across DHT regions after initial DHT map is created. Check ipfs provide stat to see when providing begins.
๐ No unnecessary DNS lookups for AutoTLS addresses
Kubo no longer makes DNS queries for AutoTLS addresses like 1-2-3-4.peerid.libp2p.direct. Since the IP is encoded in the hostname (1-2-3-4 means 1.2.3.4), Kubo extracts it locally. This reduces load on the public good DNS servers at libp2p.direct run by Shipyard, reserving them for web browsers which lack direct DNS access and must rely on the browser's resolver.
To disable, set AutoTLS.SkipDNSLookup to false.
โฑ๏ธ Configurable gateway request duration limit
Gateway.MaxRequestDuration sets an absolute deadline for gateway requests. Unlike RetrievalTimeout (which resets on each data write and catches stalled transfers), this is a hard limit on the total time a request can take.
The default 1 hour limit (previously hardcoded) can now be adjusted to fit your deployment needs. This is a fallback that prevents requests from hanging indefinitely when subsystem timeouts are misconfigured or fail to trigger. Returns 504 Gateway Timeout when exceeded.
๐ง Recovery from corrupted MFS root
If your daemon fails to start because the MFS root is not a directory (due to misconfiguration, operational error, or disk corruption), you can now recover without deleting and recreating your repository in a new IPFS_PATH.
The new ipfs files chroot command lets you reset the MFS (Mutable File System) root or restore it to a known valid CID:
# Reset MFS to an empty directory
$ ipfs files chroot --confirm
# Or restore from a previously saved directory CID
$ ipfs files chroot --confirm QmYourBackupCIDSee ipfs files chroot --help for details.
๐ก RPC Content-Type headers for binary responses
HTTP RPC endpoints that return binary data now set appropriate Content-Type headers, making it easier to integrate with HTTP clients and tooling that rely on MIME types. On CLI these commands behave the same as before, but over HTTP RPC you now get proper headers:
| Endpoint | Content-Type |
|---|---|
/api/v0/get
| application/x-tar or application/gzip
|
/api/v0/dag/export
| application/vnd.ipld.car
|
/api/v0/block/get
| application/vnd.ipld.raw
|
/api/v0/name/get
| application/vnd.ipfs.ipns-record
|
/api/v0/diag/profile
| application/zip
|
๐ New ipfs name get|put commands
You can now backup, restore, and share IPNS records without needing the private key.
$ ipfs name get /ipns/k51... > record.bin
$ ipfs name get /ipns/k51... | ipfs name inspect
$ ipfs name put k51... record.binThese are low-level tools primarily for debugging and testing IPNS.
The put command validates records by default. Use --force to skip validation and test how routing systems handle malformed or outdated records. Note that --force only bypasses this command's checks; the routing system may still reject invalid records.
๐ Long listing format for ipfs ls
The ipfs ls command now supports --long (-l) flag for displaying Unix-style file permissions and modification times. This works with files added using --preserve-mode and --preserve-mtime. See ipfs ls --help for format details and examples.
๐ฅ๏ธ WebUI Improvements
IPFS Web UI has been updated to v4.11.0.
Search and filter files
You can now search and filter files directly in the Files screen. Type a name, CID, or file extension and the list narrows down in real time. Works in both list and grid view.
DHT Provide diagnostic screen
New screen under Diagnostics that shows the health of DHT Provide operations. You can see reprovide cycle progress, worker utilization, queue status, and network throughput at a glance, without having to use the ipfs provide stat CLI.
Better path handling in Files
The Inspect button now resolves /ipfs/ and /ipns/ paths to their final CID before opening the IPLD Explorer. The Explore form also accepts ipfs:// and ipns:// protocol URLs. Previously, these would show a blank screen or an infinite spinner. Path resolution errors now also show better error pages:
๐ Fixed Prometheus metrics bloat on popular subdomain gateways
Most Kubo users are unaffected by this change. It matters if you run Kubo as a public subdomain gateway (with Gateway.PublicGateways and UseSubdomains: true), where the otelhttp instrumentation was including the raw Host header as the server_address metric label. Every unique hostname (e.g., each CID.ipfs.dweb.link) created a separate time series, resulting in millions of metric lines, multi-gigabyte /debug/metrics/prometheus responses, and Prometheus scrape timeouts.
What changed:
http_server_*metrics replace the unboundedserver_addresslabel with a newserver_domainlabel that groups requests by gateway domain:- Gateway: matched
Gateway.PublicGatewayssuffix (e.g.,dweb.link,ipfs.io), orlocalhost,loopback,other - RPC API:
api/ Libp2p Gateway:libp2p
- Gateway: matched
- Prometheus exemplars are disabled to prevent log noise from long subdomain hostnames. Tracing spans are unaffected.
If you use Rainbow for your public gateway (recommended), this issue never applied to you -- Rainbow uses its own low-cardinality HTTP metrics.
๐ข libp2p announces all interface addresses
go-libp2p v0.47.0 includes a rewritten routing library (go-netroute) that fixes interop with VPN and WireGuard/Tailscale setups. A side effect: when listening on 0.0.0.0, libp2p now returns addresses from all network interfaces instead of just the primary one (go-libp2p#3460).
This means easier connectivity and less manual configuration for most desktop, VPN, and self-hosted users. However, if you don't run with the server profile and have an empty Addresses.NoAnnounce, your node may now announce internal addresses (e.g. Docker bridge 172.17.0.0/16 or Tailscale 100.64.0.0/10) to the DHT. In the default setup, AutoNAT will probe and mark unreachable ones as offline and they won't be listed, but you can also filter them out explicitly.
To check what your node announces and filter out unwanted ranges:
$ ipfs swarm addrs local
$ ipfs config --json Addresses.NoAnnounce '["/ip4/172.17.0.0/ipcidr/16"]'The server profile already filters common private ranges via Addresses.NoAnnounce.
๐๏ธ Badger v1 datastore slated for removal this year
The badgerds datastore (based on badger 1.x) is slated for removal. Badger v1 has not been maintained by its upstream maintainers for years and has known bugs including startup timeouts, shutdown hangs, and file descriptor exhaustion. Starting with this release, every daemon start with a badger-based repository prints a loud deprecation error on stderr.
See the badgerds profile documentation for migration guidance, and #11186 for background.
๐น Go 1.26
This release is built with Go 1.26.
You should see lower memory usage and reduced GC pauses thanks to the new Green Tea garbage collector (10-40% less GC overhead). Reading block data and API responses is faster due to io.ReadAll improvements (~2x faster, ~50% less memory). On 64-bit platforms, heap base address randomization adds a layer of security hardening.
๐ฆ๏ธ Dependency updates
- update
go-libp2pto v0.47.0 (incl. v0.46.0)- Reduced WebRTC log noise by using debug level for pion errors (go-libp2p#3426).
- Fixed mDNS discovery on Windows and macOS by filtering addresses to reduce packet size (go-libp2p#3434).
- AutoTLS addresses no longer get marked unreachable when peers lack WebSockets support. Swarm heals over time (go-libp2p#3435).
- Fixed
stream.Close()blocking indefinitely on unresponsive peers (go-libp2p#3448).
- update
quic-goto v0.59.0 (incl. v0.58.0 + v0.57.0) - update
p2p-forgeto v0.7.0 - update
go-ds-pebbleto v0.5.9- updates
github.com/cockroachdb/pebbleto v2.1.4 to enable Go 1.26 support
- updates
- update
go-libp2p-pubsubto v0.15.0 - update
go-ipld-primeto v0.22.0 - update
boxoto v0.37.0 (incl. v0.36.0) - update
go-libp2p-kad-dhtto v0.38.0 (includes v0.37.1, v0.37.0) - update
ipfs-webuito v4.11.1 (incl. v4.11.0) - update
gateway-conformancetests to v0.10 (incl. v0.9)
๐ Changelog
Full Changelog
- github.com/ipfs/kubo:
- fix(metrics): disable otel exemplars to prevent rune overflow (#11211) (ipfs/kubo#11211)
- fix: drop high-cardinality server.address from http_server metrics (#11208) (ipfs/kubo#11208)
- chore: set version to 0.40.0-rc2
- fix(version): produce shorter user agent for tagged release builds
- chore: update webui to v4.11.1 (#11204) (ipfs/kubo#11204)
- fix: improve
ipfs name putfor IPNS record republishing (#11199) (ipfs/kubo#11199) - Upgrade to Boxo v0.37.0 (#11201) (ipfs/kubo#11201)
- chore: set version to v0.40.0-rc1
- refactor: apply go fix modernizers from Go 1.26 (#11190) (ipfs/kubo#11190)
- feat: update to Go 1.26 (#11189) (ipfs/kubo#11189)
- docs: clarify LevelDB compaction limitations and StorageMax scope (#11188) (ipfs/kubo#11188)
- docs: loud deprecation of badger v1 datastore (#11187) (ipfs/kubo#11187)
- docs(changelog): add highlight for libp2p AllAddrs behavior change (#11183) (ipfs/kubo#11183)
- fix: allow dag import of 1MiB chunks wrapped in dag-pb (#11185) (ipfs/kubo#11185)
- feat:
swarm addrs autonatcommand (#11184) (ipfs/kubo#11184) - feat(gateway): IPIP-0524 Gateway.AllowCodecConversion config option (#11090) (ipfs/kubo#11090)
- feat: update ipfs-webui to v4.11.0 (#11182) (ipfs/kubo#11182)
- feat(config): add Import.* for CID Profiles from IPIP-499 (#11148) (ipfs/kubo#11148)
- chore: replace libp2p.io URL with Internet Archive (#11181) (ipfs/kubo#11181)
- test: IPIP-523 format query precedence over Accept header (#11086) (ipfs/kubo#11086)
- docs: update go-libp2p changelog entry to v0.47.0
- feat(rpc): Content-Type headers and IPNS record get/put (#11067) (ipfs/kubo#11067)
- feat(key): add 'ipfs key ls' as alias for 'ipfs key list' (#11147) (ipfs/kubo#11147)
- docs: cleanup broken links and outdated content (#11100) (ipfs/kubo#11100)
- feat(dns): skip DNS lookups for AutoTLS hostnames (#11140) (ipfs/kubo#11140)
- Upgrade to Boxo v0.36.0 (#11175) (ipfs/kubo#11175)
- chore: upgrade go-ds-pebble to v0.5.9 (#11170) (ipfs/kubo#11170)
- fix(commands/reprovide): update manual reprovide error message (#11151) (ipfs/kubo#11151)
- feat(cli): ls --long (#11103) (ipfs/kubo#11103)
- feat(pubsub): persistent validation and diagnostic commands (#11110) (ipfs/kubo#11110)
- feat(config): add Gateway.MaxRequestDuration option (#11138) (ipfs/kubo#11138)
- feat(provider): info log AcceleratedDHTClient crawl (#11143) (ipfs/kubo#11143)
- ipfswatch: fix panic on broken link (#11145) (ipfs/kubo#11145)
- upgrade go-libp2p-pubsub to v0.15.0 (#11144) (ipfs/kubo#11144)
- feat(mfs): chroot command to change the root (#8648) (ipfs/kubo#8648)
- feat: improved go-ds-flatfs (#11092) (ipfs/kubo#11092)
- test: fix flaky ipfswatch test (#11142) (ipfs/kubo#11142)
- docs: clarify Routing.Type=custom as experimental (#11111) (ipfs/kubo#11111)
- fix(routing): defensive clone of AddrInfo from provider channel (#11120) (ipfs/kubo#11120)
- fix(provider): wait for fullrt crawl completion before providing (#11137) (ipfs/kubo#11137)
- fix(provide): do not output keystore error on shutdown (#11130) (ipfs/kubo#11130)
- feat(p2p): add --foreground flag to listen and forward commands (#11099) (ipfs/kubo#11099)
- feat(cli): improve ipfs dag stat output UX (#11097) (ipfs/kubo#11097)
- docs: add production deployment guidance for gateway (#11117) (ipfs/kubo#11117)
- fix(routing): use LegacyProvider for HTTP-only custom routing (#11112) (ipfs/kubo#11112)
- shutdown daemon after test (#11135) (ipfs/kubo#11135)
- fix(ci): parallelize gotest, cleanup output, flakiness (#11113) (ipfs/kubo#11113)
- test: replace
go-clockwithtesting/synctest(#11131) (ipfs/kubo#11131) - docs: improve README for first-time users (#11133) (ipfs/kubo#11133)
- keys: skip bad keys when listing (#11115) (ipfs/kubo#11115)
- docs: add developer guide for local development workflow (#11128) (ipfs/kubo#11128)
- datastore: upgrade go-ds-pebble to v0.5.8 (#11129) (ipfs/kubo#11129)
- output stdout and stderr on example test failure (#11119) (ipfs/kubo#11119)
- chore: update go-libp2p 0.46 (#11105) (ipfs/kubo#11105)
- fix(ipfswatch): loading datastore plugins (#11078) (ipfs/kubo#11078)
- Add bytes progress tracker for ipfs pin add (#11074) (ipfs/kubo#11074)
- docs: link sweep blogpost in Provide.DHT.SweepEnabled
- docs: note sweep+accelerated DHT client limitation (#11084) (ipfs/kubo#11084)
- refactor: replace context.WithCancel with t.Context (#11083) (ipfs/kubo#11083)
- chore: remove deprecated go-ipfs Docker image publishing (#11081) (ipfs/kubo#11081)
- Merge release v0.39.0 (ipfs/kubo#11080)
- docs: move IPIP-476 feature to v0.40 changelog
- upgrade go-libp2p-kad-dht to v0.36.0 (#11079) (ipfs/kubo#11079)
- fix(docker): include symlinks in scanning for init scripts (#11077) (ipfs/kubo#11077)
- Update deprecation message for Reprovider fields (#11072) (ipfs/kubo#11072)
- fix doc string (#11068) (ipfs/kubo#11068)
- feat: support GetClosesPeers (IPIP-476) and ExposeRoutingAPI by default (#10954) (ipfs/kubo#10954)
- chore: start v0.40.0 release cycle
- github.com/gammazero/chanqueue (v1.1.1 -> v1.1.2):
- require go1.24 or later (#9) (gammazero/chanqueue#9)
- update workflow (#7) (gammazero/chanqueue#7)
- prefer range loops (#6) (gammazero/chanqueue#6)
- github.com/gammazero/deque (v1.2.0 -> v1.2.1):
- fix panic after IterPopX leaves buffer exactly full (#51) (gammazero/deque#51)
- fix panic if copying in exactly the buffer size (#50) (gammazero/deque#50)
- refactor: prefer range loops (#49) (gammazero/deque#49)
- github.com/ipfs/boxo (v0.35.2 -> v0.37.0):
- Release v0.37.0 (ipfs/boxo#1109)
- update dependencies (#1107) (ipfs/boxo#1107)
- refactor: modernize code (#1105) (ipfs/boxo#1105)
- ensure http response body is closed (#1103) (ipfs/boxo#1103)
- update multiaddr dns and otel (#1102) (ipfs/boxo#1102)
- fix: raise block size limits from 1MiB to 2MiB (#1101) (ipfs/boxo#1101)
- test(gateway): add dag-pb to dag-json codec conversion tests
- feat(gateway): IPIP-0524 + AllowCodecConversion config option (#1077) (ipfs/boxo#1077)
- feat(unixfs): configurable CID Profiles from IPIP-499 (#1088) (ipfs/boxo#1088)
- feat(gateway): IPIP-523 format query over Accept header (#1074) (ipfs/boxo#1074)
- Release v0.36.0 (ipfs/boxo#1099)
- upgrade go-libp2p-kad-dht to v0.37.1 (#1097) (ipfs/boxo#1097)
- fix(routing): defensive nil checks for multiaddr handling (#1081) (ipfs/boxo#1081)
- fix: flaky TestSessionBetweenPeers with shuffle enabled (#1022) (ipfs/boxo#1022)
- upgrade to go-libp2p v0.47.0 (#1095) (ipfs/boxo#1095)
- update dependencies (#1091) (ipfs/boxo#1091)
- refactor: rewrite some flaky tests to testing/synctest (#1087) (ipfs/boxo#1087)
- fix(routing): fix unknown record bytes unmarshalling (#1090) (ipfs/boxo#1090)
- refactor: replace
go-clockwithsynctest(#1082) (ipfs/boxo#1082) - chore: fix gofumpt formatting in dagreader.go
- cosmetic fixes (#1086) (ipfs/boxo#1086)
- feat(gateway): configurable fallback timeout for MaxRequestDuration (#1079) (ipfs/boxo#1079)
- fix(bitswap/network):
stream.Close()blocks indefinitely on unresponsive peers (#1083) (ipfs/boxo#1083) - test: cleanup goroutines at end of test (#1084) (ipfs/boxo#1084)
- keystore: improve error messages and include key file name (#1080) (ipfs/boxo#1080)
- docs: update deprecation comments to reference IPIP-526 (#1076) (ipfs/boxo#1076)
- feat(ipld/merkledag): add total size of visited nodes in progress tracker (ipfs/boxo#1071)
- upgrade to go-libp2p-kad-dht v0.36.0 (ipfs/boxo#1072)
- routing/http: add support for GetClosestPeers (IPIP-476) (#1021) (ipfs/boxo#1021)
- tar: fix name filter on windows (ipfs/boxo#1047)
- github.com/ipfs/go-cidutil (v0.1.0 -> v0.1.1):
- new version (#55) (ipfs/go-cidutil#55)
- update dependencies (#53) (ipfs/go-cidutil#53)
- ci: uci/copy-templates (ipfs/go-cidutil#43)
- ci: uci/copy-templates (ipfs/go-cidutil#42)
- github.com/ipfs/go-datastore (v0.9.0 -> v0.9.1):
- new version (#266) (ipfs/go-datastore#266)
- update opentelemetry to v1.40.0 (#265) (ipfs/go-datastore#265)
- refactor: modernize code (#264) (ipfs/go-datastore#264)
- test suite: use a non-cancelled context to delete all keys (#259) (ipfs/go-datastore#259)
- Document not to reuse batch (#258) (ipfs/go-datastore#258)
- Revert "Test that a second batch commit does not error (#256)" (#257) (ipfs/go-datastore#257)
- Test that a second batch commit does not error (#256) (ipfs/go-datastore#256)
- github.com/ipfs/go-ds-flatfs (v0.5.5 -> v0.6.0):
- new version (#144) (ipfs/go-ds-flatfs#144)
- refactor: rewrite batch mode to use temp directory (#142) (ipfs/go-ds-flatfs#142)
- Clarify the usage of RLock and why RUnlock is missing when applying ops (#141) (ipfs/go-ds-flatfs#141)
- update dependencies (#134) (ipfs/go-ds-flatfs#134)
- github.com/ipfs/go-ds-pebble (v0.5.7 -> v0.5.9):
- new version (#79) (ipfs/go-ds-pebble#79)
- update error checks to use errors.Is (#78) (ipfs/go-ds-pebble#78)
- new version (#76) (ipfs/go-ds-pebble#76)
- github.com/ipfs/go-dsqueue (v0.1.1 -> v0.2.0):
- release v0.2.0 (#33) (ipfs/go-dsqueue#33)
- update dependencies and required go version (#32) (ipfs/go-dsqueue#32)
- new version (#31) (ipfs/go-dsqueue#31)
- refactor: put queued item decoding logic into function (#30) (ipfs/go-dsqueue#30)
- use testing/synctest for artificial clock (#29) (ipfs/go-dsqueue#29)
- github.com/ipfs/go-ipfs-cmds (v0.15.0 -> v0.16.0):
- new version (#325) (ipfs/go-ipfs-cmds#325)
- update to use WaitGroup.Go (#324) (ipfs/go-ipfs-cmds#324)
- refactor: modernize code (#322) (ipfs/go-ipfs-cmds#322)
- feat: add --dereference-symlinks flag for recursive symlink resolution (#315) (ipfs/go-ipfs-cmds#315)
- fix: add remaining binary content types to MIMEEncodings
- fix: recognize content-type application/x-tar (#320) (ipfs/go-ipfs-cmds#320)
- feat(http): ability to control Content-Type of binary responses (#311) (ipfs/go-ipfs-cmds#311)
- update dependencies and fix test (#318) (ipfs/go-ipfs-cmds#318)
- update dependencies (#296) (ipfs/go-ipfs-cmds#296)
- github.com/ipfs/go-ipfs-pq (v0.0.3 -> v0.0.4):
- new version (#23) (ipfs/go-ipfs-pq#23)
- fix broken test (#22) (ipfs/go-ipfs-pq#22)
- Update readme links (#21) (ipfs/go-ipfs-pq#21)
- github.com/ipfs/go-log/v2 (v2.9.0 -> v2.9.1):
- new version (#179) (ipfs/go-log#179)
- github.com/ipfs/go-peertaskqueue (v0.8.2 -> v0.8.3):
- new version (ipfs/go-peertaskqueue#51)
- update dependencies (ipfs/go-peertaskqueue#50)
- Add README.md (ipfs/go-peertaskqueue#49)
- replace go-clock with synctest (ipfs/go-peertaskqueue#47)
- github.com/ipfs/go-unixfsnode (v1.10.2 -> v1.10.3):
- new version (ipfs/go-unixfsnode#92)
- refactor: modernize code (ipfs/go-unixfsnode#91)
- github.com/ipld/go-ipld-prime (v0.21.0 -> v0.22.0):
failed to fetch repo - github.com/ipshipyard/p2p-forge (v0.6.1 -> v0.7.0):
- chore: release v0.7.0 (#81) (ipshipyard/p2p-forge#81)
- feat: add IP denylist plugin for abuse prevention (#79) (ipshipyard/p2p-forge#79)
- refactor/test/fix: ipparser hardening (#75) (ipshipyard/p2p-forge#75)
- github.com/libp2p/go-libp2p (v0.45.0 -> v0.47.0):
- Release v0.47.0 (#3454) (libp2p/go-libp2p#3454)
- rcmgr: expose resource limits to Prometheus (#3433) (libp2p/go-libp2p#3433)
- update webtransport-go to v0.10.0 and quic-go to v0.59.0 (#3452)f
- fix: handle error from mh.Sum in IDFromPublicKey
- fix(basic_host): set read deadline before multistream Close to prevent blocking
- update simnet dependency
- rename simconlibp2p package to simlibp2p
- simlibp2p: add GetBasicHostPair helper
- run synctest with Go 1.25
- fix(autonatv2): secondary addrs inherit reachability from primary (#3435) (libp2p/go-libp2p#3435)
- Release v0.46.0
- chore: update quic-go to v0.57.1 (#3439) (libp2p/go-libp2p#3439)
- fix(mdns): filter addresses to reduce packet size (#3434) (libp2p/go-libp2p#3434)
- chore: update quic-go to v0.56.0 (#3425) (libp2p/go-libp2p#3425)
- fix(webrtc): use debug level for pion errors (#3426) (libp2p/go-libp2p#3426)
- github.com/libp2p/go-libp2p-kad-dht (v0.36.0 -> v0.38.0):
- Release v0.38.0 (#1236) (libp2p/go-libp2p-kad-dht#1236)
- fix(provider/keystore): protect keystore size during reset (#1227) (libp2p/go-libp2p-kad-dht#1227)
- update dependencies and minimum go version (#1230) (libp2p/go-libp2p-kad-dht#1230)
- refactor: apply go fix modernizers from Go 1.26 (#1231) (libp2p/go-libp2p-kad-dht#1231)
- chore: go-libdht org transfer (#1229) (libp2p/go-libp2p-kad-dht#1229)
- fix(provider): close datastore results (#1226) (libp2p/go-libp2p-kad-dht#1226)
- new version (#1225) (libp2p/go-libp2p-kad-dht#1225)
- replace multierr with errors.Join (#1224) (libp2p/go-libp2p-kad-dht#1224)
- fix(routing): add per-peer timeouts for PutValue and Provide (#1222) (libp2p/go-libp2p-kad-dht#1222)
- chore: release v0.37.0 (#1221) (libp2p/go-libp2p-kad-dht#1221)
- fix(provider): keyspace exploration should succeed with a single peer (#1220) (libp2p/go-libp2p-kad-dht#1220)
- fix(provider): hold scheduleLk when reading schedule.Size() in test (#1219) (libp2p/go-libp2p-kad-dht#1219)
- fix(provider): close worker pool before wg.Wait() (#1218) (libp2p/go-libp2p-kad-dht#1218)
- chore: remove deprecated providers pkg (#1211) (libp2p/go-libp2p-kad-dht#1211)
- fix(provider): don't discard peers if they all share CPL during exploration (#1216) (libp2p/go-libp2p-kad-dht#1216)
- fix(records): clone addresses received from peerstore (#1210) (libp2p/go-libp2p-kad-dht#1210)
- tests: fix flaky TestOptimisticProvide (#1213) (libp2p/go-libp2p-kad-dht#1213)
- tests: fix flaky TestHandleRemotePeerProtocolChanges (#1212) (libp2p/go-libp2p-kad-dht#1212)
- chore: bump go-libp2p to v0.46 (#1209) (libp2p/go-libp2p-kad-dht#1209)
- github.com/libp2p/go-libp2p-pubsub (v0.14.2 -> v0.15.0):
- release v0.15.0
- Fix data race in test
- Skip flaky floodsub test
- pubsub: remove redundant sends of hello packet
- gossipsub: implement extensions
- test: add skeleton gossipsub to drive a gossipsub peer
- gossipsub: add plumbing for Gossipsub v1.3 support
- pubsub: AddPeer now accepts reference to hello packet
- pb: add extensions protobufs
- feat: add px peer record reducer + pub addrs filter
- Migrate to
log/slog - chore: add params.Dscore validation
- Release v0.14.3
- Unexport Params.Validate to maintain patch release semantics
- Merge pull request #642 for GossipSub Params validation
- fix: Select ctx.Done() when preprocessing to avoid blocking on cancel (#635) (libp2p/go-libp2p-pubsub#635)
- github.com/libp2p/go-netroute (v0.3.0 -> v0.4.0):
- v0.4.0
- gofmt (libp2p/go-netroute#65)
- linux: use rtnetlink directly (libp2p/go-netroute#64)
- github.com/multiformats/go-multiaddr-dns (v0.4.1 -> v0.5.0):
- Release v0.5.0
- refactor: remove miekg/dns dep (#72) (multiformats/go-multiaddr-dns#72)
๐จโ๐ฉโ๐งโ๐ฆ Contributors
| Contributor | Commits | Lines ยฑ | Files Changed |
|---|---|---|---|
| @lidel | 62 | +18446/-3513 | 406 |
| @gammazero | 84 | +5719/-2815 | 374 |
| @MarcoPolo | 24 | +1275/-311 | 58 |
| @guillaumemichel | 14 | +392/-967 | 41 |
| @hsanjuan | 4 | +1093/-43 | 15 |
| @sneaxhuh | 2 | +840/-19 | 7 |
| @cortze | 1 | +367/-35 | 2 |
| @schomatis | 1 | +288/-17 | 5 |
| @rifeplight | 1 | +92/-195 | 18 |
| @sukunrt | 3 | +22/-211 | 7 |
| @2color | 1 | +207/-2 | 5 |
| @djdv | 8 | +96/-65 | 10 |
| @vlerdman | 4 | +90/-38 | 8 |
| @v1rtl | 1 | +71/-3 | 2 |
| @VedantMadane | 1 | +23/-8 | 4 |
| @dozyio | 1 | +26/-4 | 2 |
| @infrmtcs | 1 | +24/-1 | 2 |
| @marten-seemann | 1 | +5/-1 | 2 |
| @web3-bot | 2 | +3/-2 | 2 |
| @MozirDmitriy | 1 | +4/-1 | 1 |
| @aschmahmann | 1 | +2/-1 | 1 |
| @willscott | 1 | +1/-1 | 1 |
| @lbarrettanderson | 1 | +1/-1 | 1 |
| @filipremb | 1 | +1/-1 | 1 |




