This release was brought to you by the Shipyard team.
- ๐ฃ Discuss
- ๐ฆ Highlights
- Shared TCP listeners
- AutoTLS takes care of Secure WebSockets setup
- Bitswap improvements from Boxo
- Using default
libp2p_rcmgr
metrics - Flatfs does not
sync
on each write ipfs add --to-files
no longer works with--wrap
ipfs --api
supports HTTPS RPC endpoints- New options for faster writes:
WriteThrough
,BlockKeyCacheSize
,BatchMaxNodes
,BatchMaxSize
- MFS stability with large number of writes
- New DoH resolvers for non-ICANN DNSLinks
- ๐ฆ๏ธ Important dependency updates
- Escape Redirect URL for Directory
- ๐ Changelog
- ๐จโ๐ฉโ๐งโ๐ฆ Contributors
๐ฆ Highlights
Shared TCP listeners
Kubo now supports sharing the same TCP port (4001
by default) by both raw TCP and WebSockets libp2p transports.
This feature is not yet compatible with Private Networks and can be disabled by setting LIBP2P_TCP_MUX=false
if causes any issues.
AutoTLS takes care of Secure WebSockets setup
It is no longer necessary to manually add /tcp/../ws
listeners to Addresses.Swarm
when AutoTLS.Enabled
is set to true
. Kubo will detect if /ws
listener is missing and add one on the same port as pre-existing TCP (e.g. /tcp/4001
), removing the need for any extra configuration.
Tip
Give it a try:
$ ipfs config --json AutoTLS.Enabled true
And restart the node. If you are behind NAT, make sure your node is publicly diallable (uPnP or port forwarding), and wait a few minutes to pass all checks and for the changes to take effect.
See AutoTLS
for more information.
Bitswap improvements from Boxo
This release includes some refactorings and improvements affecting Bitswap which should improve reliability. One of the changes affects blocks providing. Previously, the bitswap layer took care itself of announcing new blocks -added or received- with the configured provider (i.e. DHT). This bypassed the "Reprovider", that is, the system that manages precisely "providing" the blocks stored by Kubo. The Reprovider knows how to take advantage of the AcceleratedDHTClient, is able to handle priorities, logs statistics and is able to resume on daemon reboot where it left off. From now on, Bitswap will not be doing any providing on-the-side and all announcements are managed by the reprovider. In some cases, when the reproviding queue is full with other elements, this may cause additional delays, but more likely this will result in improved block-providing behaviour overall.
Using default libp2p_rcmgr
metrics
Bespoke rcmgr metrics were removed, Kubo now exposes only the default libp2p_rcmgr
metrics from go-libp2p.
This makes it easier to compare Kubo with custom implementations based on go-libp2p.
If you depended on removed ones, please fill an issue to add them to the upstream go-libp2p.
Flatfs does not sync
on each write
New repositories initialized with flatfs
in Datastore.Spec
will have sync
set to false
.
The old default was overly conservative and caused performance issues in big repositories that did a lot of writes. There is usually no need to flush on every block write to disk before continuing. Setting this to false is safe as kubo will automatically flush writes to disk before and after performing critical operations like pinning. However, we still provide users with ability to set this to true to be extra-safe (at the cost of a slowdown when adding files in bulk).
ipfs add --to-files
no longer works with --wrap
Onboarding files and directories with ipfs add --to-files
now requires non-empty names. due to this, The --to-files
and --wrap
options are now mutually exclusive (#10612).
ipfs --api
supports HTTPS RPC endpoints
CLI and RPC client now supports accessing Kubo RPC over https://
protocol when multiaddr ending with /https
or /tls/http
is passed to ipfs --api
:
$ ipfs id --api /dns/kubo-rpc.example.net/tcp/5001/tls/http
# โ https://kubo-rpc.example.net:5001
New options for faster writes: WriteThrough
, BlockKeyCacheSize
, BatchMaxNodes
, BatchMaxSize
Now that Kubo supports pebble
as an experimental datastore backend, it becomes very useful to expose some additional configuration options for how the blockservice/blockstore/datastore combo behaves.
Usually, LSM-tree based datastore like Pebble or Badger have very fast write performance (blocks are streamed to disk) while incurring in read-amplification penalties (blocks need to be looked up in the index to know where they are on disk), specially noticiable on spinning disks.
Prior to this version, BlockService
and Blockstore
implementations performed a Has(cid)
for every block that was going to be written, skipping the writes altogether if the block was already present in the datastore. The performance impact of this Has()
call can vary. The Datastore
implementation itself might include block-caching and things like bloom-filters to speed up lookups and mitigate read-penalties. Our Blockstore
implementation also supports a bloom-filter (controlled by BloomFilterSize
and disabled by default), and a two-queue cache for keys and block sizes. If we assume that most of the blocks added to Kubo are new blocks, not already present in the datastore, or that the datastore itself includes mechanisms to optimize writes and avoid writing the same data twice, the calls to Has()
at both BlockService and Blockstore layers seem superflous to they point they even harm write performance.
For these reasons, from now on, the default is to use a "write-through" mode for the Blockservice and the Blockstore. We have added a new option Datastore.WriteThrough
, which defaults to true
. Previous behaviour can be obtained by manually setting it to false
.
We have also made the size of the two-queue blockstore cache configurable with another option: Datastore.BlockKeyCacheSize
, which defaults to 65536
(64KiB). Additionally, this caching layer can be disabled altogether by setting it to 0
. In particular, this option controls the size of a blockstore caching layer that records whether the blockstore has certain block and their sizes (but does not cache the contents, so it stays relativey small in general).
Finally, we have added two new options to the Import
section to control the maximum size of write-batches: BatchMaxNodes
and BatchMaxSize
. These are set by default to 128
nodes and 20MiB
. Increasing them will batch more items together when importing data with ipfs dag import
, which can speed things up. It is importance to find a balance between available memory (used to hold the batch), disk latencies (when writing the batch) and processing power (when preparing the batch, as nodes are sorted and duplicates removed).
As a reminder, details from all the options are explained in the configuration documentation.
We recommend users trying Pebble as a datastore backend to disable both blockstore bloom-filter and key caching layers and enable write through as a way to evaluate the raw performance of the underlying datastore, which includes its own bloom-filter and caching layers (default cache size is 8MiB
and can be configured in the options.
MFS stability with large number of writes
We have fixed a number of issues that were triggered by writing or copying many files onto an MFS folder: increased memory usage first, then CPU, disk usage, and eventually a deadlock on write operations. The details of the fixes can be read at #10630 and #10623. The result is that writing large amounts of files to an MFS folder should now be possible without major issues. It is possible, as before, to speed up the operations using the ipfs files --flush=false <op> ...
flag, but it is recommended to switch to ipfs files --flush=true <op> ...
regularly, or call ipfs files flush
on the working directory regularly, as this will flush, clear the directory cache and speed up reads.
New DoH resolvers for non-ICANN DNSLinks
.eth
TLD DNSLinks are now resolved via DNS-over-HTTPS endpoint athttps://dns.eth.limo/dns-query
.crypto
TLD DNSLinks are now resolved via DoH endpoint athttps://resolver.unstoppable.io/dns-query
๐ฆ๏ธ Important dependency updates
- update
boxo
to v0.27.2 (incl. v0.25.0 + v0.26.0 + v0.27.0 + v0.27.1) - update
go-libp2p
to v0.38.2 (incl. v0.37.1 + v0.37.2 + v0.38.0 + v0.38.1) - update
go-libp2p-kad-dht
to v0.28.2 - update
quic-go
to v0.49.0 - update
p2p-forge/client
to v0.3.0 (incl. v0.1.0, v0.2.0, v0.2.1, v0.2.2) - update
ipfs-webui
to v4.4.2 (incl. v4.4.1)
Escape Redirect URL for Directory
When navigating to a subdirectory, served by the Kubo web server, a subdirectory without a trailing slash gets redirected to a URL with a trailing slash. If there are special characters such as "%" in the subdirectory name then these must be escaped in the redirect URL. Previously this was not being done and was preventing navigation to such subdirectories, requiring the user to manually add a trailing slash to the subdirectory URL. This is now fixed to handle the redirect to URLs with characters that must be escaped.
๐ Changelog
Full Changelog
- github.com/ipfs/kubo:
- test: fix the socat tests after the ubuntu 24.04 upgrade (#10683) (ipfs/kubo#10683)
- chore: 0.33.0-rc3
- fix: quic-go v0.49.0 (#10673) (ipfs/kubo#10673)
- Upgrade to Boxo v0.27.2 (#10672) (ipfs/kubo#10672)
- chore: 0.33.0-rc2
- Upgrade to Boxo v0.27.1 (#10671) (ipfs/kubo#10671)
- fix(autotls): renewal and AutoTLS.ShortAddrs (#10669) (ipfs/kubo#10669)
- update changelog for boxo and go-libp2p (#10668) (ipfs/kubo#10668)
- Upgrade to Boxo v0.27.0 (#10665) (ipfs/kubo#10665)
- update dependencies (#10664) (ipfs/kubo#10664)
- fix(dns): update default DNSLink resolvers (#10655) (ipfs/kubo#10655)
- chore: p2p-forge v0.2.2 + go-libp2p-kad-dht v0.28.2 (#10663) (ipfs/kubo#10663)
- fix(cli): support HTTPS in ipfs --api (#10659) (ipfs/kubo#10659)
- chore: fix typos and comment formatting (#10653) (ipfs/kubo#10653)
- fix/gateway: escape directory redirect url (#10649) (ipfs/kubo#10649)
- Add example of setting array to config command help
- collection of typo fixes (#10647) (ipfs/kubo#10647)
- chore: 0.33.0-rc1
- fix: ipfs-webui v4.4.2 (#10635) (ipfs/kubo#10635)
- feat(libp2p): shared TCP listeners and AutoTLS.AutoWSS (#10565) (ipfs/kubo#10565)
- feat(flatfs): default to sync=false (#10632) (ipfs/kubo#10632)
- Minor spelling and wording changes (#10634) (ipfs/kubo#10634)
- docs: clarify Swarm.ResourceMgr.MaxMemory (#10622) (ipfs/kubo#10622)
- feat: expose BlockKeyCacheSize and enable WriteThrough datastore options (#10614) (ipfs/kubo#10614)
- cmd/files: flush parent folders (#10630) (ipfs/kubo#10630)
- Upgrade to Boxo v0.26.0 (#10631) (ipfs/kubo#10631)
- [skip changelog] pinmfs: mitigate slow mfs writes when it triggers (#10623) (ipfs/kubo#10623)
- chore: use errors.New to replace fmt.Errorf with no parameters (#10617) (ipfs/kubo#10617)
- chore: boxo v0.25.0 (#10619) (ipfs/kubo#10619)
- fix(cmds/add): disallow --wrap with --to-files (#10612) (ipfs/kubo#10612)
- refactor(cmds): do not return errors embedded in result type (#10527) (ipfs/kubo#10527)
- fix: ipfs-webui v4.4.1 (#10608) (ipfs/kubo#10608)
- chore: fix broken url in comment (#10606) (ipfs/kubo#10606)
- refactor(rcmgr): use default libp2p rcmgr metrics (#9947) (ipfs/kubo#9947)
- docs(changelog/v0.33): bitswap reprovide changes (#10604) (ipfs/kubo#10604)
- tests(cli/harness): use unused Verbose flag to pipe daemon outputs (#10601) (ipfs/kubo#10601)
- chore: p2p-forge/client v0.1.0 (#10605) (ipfs/kubo#10605)
- fix: go-libp2p v0.37.2 (#10603) (ipfs/kubo#10603)
- docs: typos (#10602) (ipfs/kubo#10602)
- tests/cli: fix flapping tests (#10600) (ipfs/kubo#10600)
- Update to boxo with refactored providerQueryManager. (#10595) (ipfs/kubo#10595)
- fix some typos in docs (#10598) (ipfs/kubo#10598)
- feat(bootstrap): add JS-based va1.bootstrap.libp2p.io (#10575) (ipfs/kubo#10575)
- fix: increase provider sample size (#10589) (ipfs/kubo#10589)
- Typos Update config.md (#10591) (ipfs/kubo#10591)
- refactor: update to boxo without goprocess (#10567) (ipfs/kubo#10567)
- fix: go-libp2p-kad-dht v0.28.1 (#10581) (ipfs/kubo#10581)
- docs: update RELEASE_CHECKLIST.md (#10564) (ipfs/kubo#10564)
- Merge release v0.32.0 (ipfs/kubo#10579)
- fix: go-libp2p-kad-dht v0.28.0 (#10578) (ipfs/kubo#10578)
- feat: ipfs-webui v4.4.0 (#10574) (ipfs/kubo#10574)
- chore: boxo v0.24.3 and p2p-forge v0.0.2 (#10572) (ipfs/kubo#10572)
- chore: stop using go-homedir (#10568) (ipfs/kubo#10568)
- fix(autotls): store certificates at the location from the repo path (#10566) (ipfs/kubo#10566)
- chore: bump master to 0.33.0-dev
- github.com/ipfs-shipyard/nopfs (v0.0.12 -> v0.0.14):
- Fix error when no doublehash db exists (#42) (ipfs-shipyard/nopfs#42)
- Improve support for IPNS double-hashed entries (#41) (ipfs-shipyard/nopfs#41)
- github.com/ipfs-shipyard/nopfs/ipfs (v0.13.2-0.20231027223058-cde3b5ba964c -> v0.25.0):
failed to fetch repo - github.com/ipfs/boxo (v0.24.3 -> v0.27.2):
- Release v0.27.2 (ipfs/boxo#811)
- Revert peer exclude cancel (ipfs/boxo#809)
- Release v0.27.1 (ipfs/boxo#807)
- fix sending cancels when excluding peer (ipfs/boxo#805)
- Release v0.27.0 (ipfs/boxo#802)
- Remove want-block sent tracking from sessionWantSender (#759) (ipfs/boxo#759)
- Upgrade to go-libp2p v0.38.2 (#804) (ipfs/boxo#804)
- [skip changelog] Use routing.ContentRouting interface (#803) (ipfs/boxo#803)
- fix potential crash in unixfs directory (#798) (ipfs/boxo#798)
- prefer slices.SortFunc to sort.Sort (#796) (ipfs/boxo#796)
- fix: ipns protobuf namespace conflict (#794) (ipfs/boxo#794)
- update release procedure (#773) (ipfs/boxo#773)
- reduce default number of routing in-process requests (#793) (ipfs/boxo#793)
- Do not return unused values from wantlists (#792) (ipfs/boxo#792)
- Create FUNDING.json [skip changelog] (#795) (ipfs/boxo#795)
- refactor: using slices.Contains to simplify the code (#791) (ipfs/boxo#791)
- do not send cancel message to peer that sent block (#784) (ipfs/boxo#784)
- Define a
go_package
for protobuf, rename to a more uniqueipns-record.proto
(ipfs/boxo#789) - bitswap: messagequeue: lock only needed sections (#787) (ipfs/boxo#787)
- Update libp2p-kad-dht to v0.28.2 (#786) (ipfs/boxo#786)
- feat(gateway): allow localhost http:// DoH resolvers (#645) (ipfs/boxo#645)
- fix(gateway): update DoH resolver for .crypto DNSLink (#782) (ipfs/boxo#782)
- fix(gateway): update DoH resolver for .eth DNSLink (#781) (ipfs/boxo#781)
- chore: pass options to tracer start (#775) (ipfs/boxo#775)
- escape redirect urls (#783) (ipfs/boxo#783)
- fix/gateway: escape directory redirect url (#779) (ipfs/boxo#779)
- fix spelling in comments (#778) (ipfs/boxo#778)
- trivial spelling changes in comments (#777) (ipfs/boxo#777)
- Release v0.26.0 (ipfs/boxo#770)
- Minor spelling and wording changes (#768) (ipfs/boxo#768)
- update go-libp2p and go-libp2p-kad-dht (ipfs/boxo#767)
- [skip changelog] fix: Drop stream references on Close/Reset (ipfs/boxo#760)
- Update go-libp2p to v0.38.0 (#764) (ipfs/boxo#764)
- Fix leak due to cid queue never getting cleaned up (#756) (ipfs/boxo#756)
- Do not reset the broadcast timer if there are no wants (#758) (ipfs/boxo#758)
- Replace mock time implementation (#762) (ipfs/boxo#762)
- mfs: clean cache on sync (ipfs/boxo#751)
- Remove peer's count of first responses when peer becomes unavailable (#757) (ipfs/boxo#757)
- Remove unnecessary CID copying in SessionInterestManager (#761) (ipfs/boxo#761)
- [bitswap/peermanager] take read-lock for read-only operation (#755) (ipfs/boxo#755)
- bitswap/client/messagequeue: expose dontHaveTimeoutMgr configuration (#750) (ipfs/boxo#750)
- improve mfs republisher (#754) (ipfs/boxo#754)
- blockstore/blockservice: change option to
WriteThrough(enabled bool)
(ipfs/boxo#749) - Merge release v0.25.0 (ipfs/boxo#748)
- Use deque instead of slice for queues (#742) (ipfs/boxo#742)
- chore: no lifecycle context to shutdown ProviderQueryManager (#734) (ipfs/boxo#734)
- removed Startup function from ProviderQueryManager (#741) (ipfs/boxo#741)
- Reenable flaky bitswap tests (#740) (ipfs/boxo#740)
- feat(session): do not record erroneous session want sends (#452) (ipfs/boxo#452)
- feat(filestore): add mmap reader option (#665) (ipfs/boxo#665)
- chore: update to latest go-libp2p (#739) (ipfs/boxo#739)
- refactor(remote/pinning):
Ls
to take results channel instead of returning one (#738) (ipfs/boxo#738) - Bitswap default ProviderQueryManager uses explicit options (#737) (ipfs/boxo#737)
- chore: minor examples cleanup (#736) (ipfs/boxo#736)
- misc comments and spelling (#735) (ipfs/boxo#735)
- chore: fix invalid url in docs (#733) (ipfs/boxo#733)
- [skip changelog] bitswap/client: fix wiring when passing custom providerFinder (ipfs/boxo#732)
- Add debug logging for deduplicated queries (#729) (ipfs/boxo#729)
- [skip changelog] staticcheck fixes / remove ununsed variables (#730) (ipfs/boxo#730)
- refactor: default to prometheus.DefaultRegisterer (#722) (ipfs/boxo#722)
- chore: minor Improvements to providerquerymanager (#728) (ipfs/boxo#728)
- dspinner: RecursiveKeys(): do not hang on cancellations (#727) (ipfs/boxo#727)
- Tests can signal immediate rebroadcast (#726) (ipfs/boxo#726)
- fix(bitswap/client/msgq): prevent duplicate requests (#691) (ipfs/boxo#691)
- Bitswap: move providing -> Exchange-layer, providerQueryManager -> routing (#641) (ipfs/boxo#641)
- fix(bitswap/client/providerquerymanager): don't end trace span until โฆ (#725) (ipfs/boxo#725)
- fix(routing/http/server): adjust bucket sizes for http metrics (ipfs/boxo#724)
- fix(bitswap/client/providerquerymanager): use non-timed out context for tracing (#721) (ipfs/boxo#721)
- fix(bitswap/server): pass context to server engine to register metrics (#723) (ipfs/boxo#723)
- docs: fix url of tracing env vars (#719) (ipfs/boxo#719)
- feat(routing/http/server): add routing timeout (#720) (ipfs/boxo#720)
- feat(routing/http/server): expose prometheus metrics (#718) (ipfs/boxo#718)
- Remove dependency on goprocess (ipfs/boxo#710)
- Merge release v0.24.3 (ipfs/boxo#714)
- fix(bitswap): log unexpected blocks to debug level (#711) (ipfs/boxo#711)
- Release v0.24.2 (ipfs/boxo#708)
- github.com/ipfs/go-ds-pebble (v0.4.0 -> v0.4.2):
- new version (#44) (ipfs/go-ds-pebble#44)
- new version for pebble minor version update (#42) (ipfs/go-ds-pebble#42)
- github.com/ipfs/go-ipfs-cmds (v0.14.0 -> v0.14.1):
- fix(NewClient): support https:// URLs (#277) (ipfs/go-ipfs-cmds#277)
- github.com/ipfs/go-peertaskqueue (v0.8.1 -> v0.8.2):
- new version (ipfs/go-peertaskqueue#39)
- Replace mock time implementation (ipfs/go-peertaskqueue#37)
- fix: staticcheck feedback
- github.com/libp2p/go-doh-resolver (v0.4.0 -> v0.5.0):
- chore: release v0.5.0
- fix: include url on HTTP error (#29) (libp2p/go-doh-resolver#29)
- feat: allow localhost http endpoints (#28) (libp2p/go-doh-resolver#28)
- sync: update CI config files (#20) (libp2p/go-doh-resolver#20)
- github.com/libp2p/go-libp2p (v0.37.0 -> v0.38.2):
- Release v0.38.2 (#3147) (libp2p/go-libp2p#3147)
- chore: release v0.38.1
- fix(httpauth): Correctly handle concurrent requests on server (#3111) (libp2p/go-libp2p#3111)
- ci: Install specific protoc version when generating protobufs (#3112) (libp2p/go-libp2p#3112)
- fix(autorelay): Move relayFinder peer disconnect cleanup to separate goroutine (#3105) (libp2p/go-libp2p#3105)
- chore: Release v0.38.0 (#3106) (libp2p/go-libp2p#3106)
- peerstore: remove sync.Pool for expiringAddrs (#3093) (libp2p/go-libp2p#3093)
- webtransport: close quic conn on dial error (#3104) (libp2p/go-libp2p#3104)
- peerstore: fix addressbook benchmark timing (#3092) (libp2p/go-libp2p#3092)
- swarm: record conn metrics only once (#3091) (libp2p/go-libp2p#3091)
- fix(sampledconn): Correctly handle slow bytes and closed conns (#3080) (libp2p/go-libp2p#3080)
- peerstore: pass options to addrbook constructor (#3090) (libp2p/go-libp2p#3090)
- fix(swarm): remove stray print stmt (#3086) (libp2p/go-libp2p#3086)
- feat(swarm): delay /webrtc-direct dials by 1 second (#3078) (libp2p/go-libp2p#3078)
- chore: Update dependencies and fix deprecated function in relay example (#3023) (libp2p/go-libp2p#3023)
- chore: fix broken link to record envelope protobuf file (#3070) (libp2p/go-libp2p#3070)
- chore(core): fix function name in interface comment (#3056) (libp2p/go-libp2p#3056)
- basichost: avoid modifying slice returned by AddrsFactory (#3068) (libp2p/go-libp2p#3068)
- fix(swarm): check after we split for empty multiaddr (#3063) (libp2p/go-libp2p#3063)
- feat: allow passing options to memoryAddrBook (#3062) (libp2p/go-libp2p#3062)
- fix(libp2phttp): Return ErrServerClosed on Close (#3050) (libp2p/go-libp2p#3050)
- chore(dashboard/alertmanager): update api version from v1 to v2 (#3054) (libp2p/go-libp2p#3054)
- fix(tcpreuse): handle connection that failed to be sampled (#3036) (libp2p/go-libp2p#3036)
- fix(tcpreuse): remove windows specific code (#3039) (libp2p/go-libp2p#3039)
- refactor(libp2phttp): don't require specific port for the HTTP host example (#3047) (libp2p/go-libp2p#3047)
- refactor(core/routing): split ContentRouting interface (#3048) (libp2p/go-libp2p#3048)
- fix(holepunch/tracer): replace inline peer struct with peerInfo type (#3049) (libp2p/go-libp2p#3049)
- fix: Defer resource usage cleanup until the very end (#3042) (libp2p/go-libp2p#3042)
- fix(eventbus): Idempotent wildcardSub close (#3045) (libp2p/go-libp2p#3045)
- fix: obsaddr: do not record observations over relayed conn (#3043) (libp2p/go-libp2p#3043)
- fix(identify): push should not dial a new connection (#3035) (libp2p/go-libp2p#3035)
- webrtc: handshake more connections in parallel (#3040) (libp2p/go-libp2p#3040)
- eventbus: dont panic on closing Subscription twice (#3034) (libp2p/go-libp2p#3034)
- fix(swarm): incorrect error message format order (#3037) (libp2p/go-libp2p#3037)
- feat: eventbus: log error on slow consumers (#3031) (libp2p/go-libp2p#3031)
- chore: make funding.json uppercase to follow meta convention (#3028) (libp2p/go-libp2p#3028)
- chore: add drips entry to funding.json for Filecoin rPGF round 2
- tcp: parameterize metrics collector (#3026) (libp2p/go-libp2p#3026)
- fix: basichost: Use NegotiationTimeout as fallback timeout for NewStream (#3020) (libp2p/go-libp2p#3020)
- feat(tcpreuse): add options for sharing TCP listeners amongst TCP, WS and WSS transports (#2984) (libp2p/go-libp2p#2984)
- pnet: wrap underlying error when reading nonce fails (#2975) (libp2p/go-libp2p#2975)
- github.com/libp2p/go-libp2p-kad-dht (v0.28.1 -> v0.28.2):
- Release v0.28.2 (#1010) (libp2p/go-libp2p-kad-dht#1010)
- accelerated-dht: cleanup peer from message sender on disconnection (#1009) (libp2p/go-libp2p-kad-dht#1009)
- chore: fix some function names in comment (libp2p/go-libp2p-kad-dht#1004)
- feat: add more attributes to traces (libp2p/go-libp2p-kad-dht#1002)
- github.com/libp2p/go-netroute (v0.2.1 -> v0.2.2):
- v0.2.2 Includes v4/v6 confusion fix for bsd route parsing
- #50, Don't transform v4 routes to their v6 form on bsd (libp2p/go-netroute#51)
- Using syscall.RtMsg on Linux (libp2p/go-netroute#43)
- add wasi build constraint for netroute_stub (libp2p/go-netroute#38)
- Stricter filtering of degenerate routes (libp2p/go-netroute#33)
- sync: update CI config files (#30) (libp2p/go-netroute#30)
- github.com/multiformats/go-multiaddr (v0.13.0 -> v0.14.0):
- Release v0.14.0 (multiformats/go-multiaddr#258)
- feat: memory multiaddrs (multiformats/go-multiaddr#256)
- nit: validate ipcidr (multiformats/go-multiaddr#247)
- check for nil interfaces (#251) (multiformats/go-multiaddr#251)
- Make it safe to roundtrip SplitXXX and Join (#250) (multiformats/go-multiaddr#250)
- github.com/multiformats/go-multiaddr-dns (v0.4.0 -> v0.4.1):
- Release v0.4.1
- fix: If decapsulating is empty, skip it. (#65) (multiformats/go-multiaddr-dns#65)
- github.com/multiformats/go-multistream (v0.5.0 -> v0.6.0):
- release v0.6.0 (multiformats/go-multistream#116)
- fix: finish reading handshake on lazyConn close
- feat: New error to highlight unrecognized responses
- release v0.5.0 (#108) (multiformats/go-multistream#108)
๐จโ๐ฉโ๐งโ๐ฆ Contributors
Contributor | Commits | Lines ยฑ | Files Changed |
---|---|---|---|
Andrew Gillis | 57 | +1995/-1718 | 191 |
Adin Schmahmann | 7 | +2552/-719 | 84 |
Marco Munizaga | 27 | +1036/-261 | 51 |
Hector Sanjuan | 21 | +789/-362 | 65 |
gammazero | 20 | +407/-419 | 40 |
sukun | 13 | +519/-233 | 30 |
Marcin Rataj | 34 | +426/-142 | 59 |
Marten Seemann | 2 | +11/-261 | 5 |
Dreamacro | 2 | +161/-68 | 5 |
Hlib Kanunnikov | 1 | +34/-65 | 4 |
bashkarev | 1 | +78/-5 | 2 |
Daniel Norman | 4 | +68/-12 | 6 |
Andi | 1 | +37/-32 | 20 |
hannahhoward | 1 | +35/-17 | 7 |
Carlos Peliciari | 2 | +19/-26 | 2 |
Cole Brown | 1 | +32/-0 | 3 |
Will Scott | 2 | +19/-7 | 3 |
Guillaume Michel | 1 | +21/-2 | 4 |
7sunarni | 1 | +3/-19 | 1 |
Srdjan S | 1 | +11/-2 | 2 |
web3-bot | 2 | +6/-6 | 3 |
dashangcun | 1 | +2/-10 | 1 |
John | 3 | +6/-6 | 5 |
Daniel N | 3 | +8/-3 | 3 |
Ivan Shvedunov | 1 | +4/-6 | 2 |
Piotr Galar | 1 | +4/-4 | 2 |
Derek Nola | 2 | +4/-4 | 4 |
Bryer | 1 | +4/-4 | 1 |
Prithvi Shahi | 2 | +6/-1 | 2 |
Cameron Wood | 1 | +7/-0 | 1 |
wangjingcun | 1 | +3/-3 | 2 |
cuibuwei | 1 | +2/-2 | 2 |
Jorropo | 1 | +1/-3 | 1 |
ๆชๆ | 1 | +1/-1 | 1 |
Ubuntu | 1 | +1/-1 | 1 |
Ryan MacArthur | 1 | +1/-1 | 1 |
Reymon | 1 | +1/-1 | 1 |
guillaumemichel | 1 | +1/-0 | 1 |