Hot on the heels of 0.5.0 is 0.5.1 with some important but small bug fixes. This release:
- Removes the 1 minute timeout for IPNS publishes (fixes #7244).
- Backport a DHT fix to reduce CPU usage for canceled requests.
- Fixes some timer leaks in the QUIC transport (ipfs/go-ipfs#2515).
- github.com/ipfs/go-ipfs:
- IPNS timeout patch from master (ipfs/go-ipfs#7276)
- github.com/libp2p/go-libp2p-core (v0.5.2 -> v0.5.3):
- feat: add a function to tell if a context subscribes to query events (libp2p/go-libp2p-core#147)
- github.com/libp2p/go-libp2p-kad-dht (v0.7.10 -> v0.7.11):
- fix: optimize for the case where we're not subscribing to query events (libp2p/go-libp2p-kad-dht#624)
- fix: don't spin when the event channel is closed (libp2p/go-libp2p-kad-dht#622)
- github.com/libp2p/go-libp2p-routing-helpers (v0.2.2 -> v0.2.3):
- fix: avoid subscribing to query events unless necessary (libp2p/go-libp2p-routing-helpers#43)
- github.com/lucas-clemente/quic-go (v0.15.5 -> v0.15.7):
- reset the PTO when dropping a packet number space
- move deadlineTimer declaration out of the Read loop
- stop the deadline timer in Stream.Read and Write
- fix buffer use after it was released when sending an INVALID_TOKEN error
- create the session timer at the beginning of the run loop
- stop the timer when the session's run loop returns
Contributor | Commits | Lines ± | Files Changed |
---|---|---|---|
Marten Seemann | 10 | +81/-62 | 19 |
Steven Allen | 5 | +42/-18 | 10 |
Adin Schmahmann | 1 | +2/-8 | 1 |
dependabot-preview[bot] | 2 | +6/-2 | 4 |
We're excited to announce go-ipfs 0.5.0! This is by far the largest go-ipfs release with ~2500 commits, 98 contributors, and over 650 PRs across ipfs, libp2p, and multiformats.
The primary focus of this release was on improving content routing. That is, advertising and finding content. To that end, this release heavily focuses on improving the DHT.
The distributed hash table (DHT) is how IPFS nodes keep track of who has what data. The DHT implementation has been almost completely rewritten in this release. Providing, finding content, and resolving IPNS records are now all much faster. However, there are risks involved with this update due to the significant amount of changes that have gone into this feature.
The current DHT suffers from three core issues addressed in this release:
- Most peers in the DHT cannot be dialed (e.g., due to firewalls and NATs). Much of a DHT query time is wasted trying to connect to peers that cannot be reached.
- The DHT query logic doesn't properly terminate when it hits the end of the query and, instead, aggressively keeps on searching.
- The routing tables are poorly maintained. This can cause search performance to slow down linearly with network size, instead of logarithmically as expected.
We have addressed the problem of undialable nodes by having nodes wait to join the DHT as server nodes until they've confirmed that they are reachable from the public internet.
To ensure that nodes which are not publicly reachable (ex behind VPNs, offline LANs, etc.) can still coordinate and share data, go-ipfs 0.5 will run two DHTs: one for private networks and one for the public internet. Every node will participate in a LAN DHT and a public WAN DHT. See Dual DHT for more details.
All IPFS nodes will now run two DHTs: one for the public internet WAN, and one for their local network LAN.
- When connected to the public internet, IPFS will use both DHTs for finding peers, content, and IPNS records. Nodes only publish provider and IPNS records to the WAN DHT to avoid flooding the local network.
- When not connected to the public internet, nodes publish provider and IPNS records to the LAN DHT.
The WAN DHT includes all peers with at least one public IP address. This release will only consider an IPv6 address public if it is in the public internet range 2000::/3
.
This feature should not have any noticeable impact on go-ipfs, performance, or otherwise. Everything should continue to work in all the currently supported network configurations: VPNs, disconnected LANs, public internet, etc.
We've improved the DHT query logic to more closely follow Kademlia. This should significantly speed up:
- Publishing IPNS & provider records.
- Resolving IPNS addresses.
Previously, nodes would continue searching until they timed out or ran out of peers before stopping (putting or returning data found). Now, nodes will now stop as soon as they find the closest peers.
Finally, we've addressed the poorly maintained routing tables by:
- Reducing the likelihood that the connection manager will kill connections to peers in the routing table.
- Keeping peers in the routing table, even if we get disconnected from them.
- Actively and frequently querying the DHT to keep our routing table full.
- Prioritizing useful peers that respond to queries quickly.
The DHT rewrite was made possible by Testground, our new testing framework. Testground allows us to spin up multi-thousand node tests with simulated real-world network conditions. By combining Testground and some custom analysis tools, we were able to gain confidence that the new DHT implementation behaves correctly.
When you add content to your IPFS node, you advertise this content to the network by announcing it in the DHT. We call this providing.
However, go-ipfs has multiple ways to address the same underlying bytes. Specifically, we address content by content ID (CID) and the same underlying bytes can be addressed using (a) two different versions of CIDs (CIDv0 and CIDv1) and (b) with different codecs depending on how we're interpreting the data.
Prior to go-ipfs 0.5.0, we used the content id (CID) in the DHT when sending out provider records for content. Unfortunately, this meant that users trying to find data announced using one CID wouldn't find nodes providing the content under a different CID.
In go-ipfs 0.5.0, we're announcing data by multihash, not CID. This way, regardless of the CID version used by the peer adding the content, the peer trying to download the content should still be able to find it.
Warning: as part of the network, this could impact finding content added with CIDv1. Because go-ipfs 0.5.0 will announce and search for content using the bare multihash (equivalent to the v0 CID), go-ipfs 0.5.0 will be unable to find CIDv1 content published by nodes prior to go-ipfs 0.5.0 and vice-versa. As CIDv1 is not enabled by default so we believe this will have minimal impact. However, users are strongly encouraged to upgrade as soon as possible.
A secondary focus in this release was improving content transfer, our data exchange protocols.
This release includes a major Bitswap refactor, running a new and backward compatible Bitswap protocol. We expect these changes to improve performance significantly.
With the refactored Bitswap, we expect:
- Few to no duplicate blocks when fetching data from other nodes speaking the new protocol.
- Better parallelism when fetching from multiple peers.
The new Bitswap won't magically make downloading content any faster until both seeds and leaches have updated. If you're one of the first to upgrade to 0.5.0
and try downloading from peers that haven't upgraded, you're unlikely to see much of a performance improvement.
Graphsync is a new exchange protocol that operates at the IPLD Graph layer instead of the Block layer like bitswap.
For example, to download "/ipfs/QmExample/index.html":
- Bitswap would download QmFoo, lookup "index.html" in the directory named by QmFoo, resolving it to a CID QmIndex. Finally, bitswap would download QmIndex.
- Graphsync would ask peers for "/ipfs/QmFoo/index.html". Specifically, it would ask for the child named "index.html" of the object named by "QmFoo".
This saves us round-trips in exchange for some extra protocol complexity. Moreover, this protocol allows specifying more powerful queries like "give me everything under QmFoo". This can be used to quickly download a large amount of data with few round-trips.
At the moment, go-ipfs cannot use this protocol to download content from other peers. However, if enabled, go-ipfs can serve content to other peers over this protocol. This may be useful for pinning services that wish to quickly replicate client data.
To enable, run:
> ipfs config --json Experimental.GraphsyncEnabled true
Continuing with the of improving our core data handling subsystems, both of the datastores used in go-ipfs, Badger and flatfs, have received important updates in this release:
Badger has been in go-ipfs for over a year as an experimental feature, and we're promoting it to stable (but not default). For this release, we've switched from writing to disk synchronously to explicitly syncing where appropriate, significantly increasing write throughput.
The current and default datastore used by go-ipfs is FlatFS. FlatFS essentially stores blocks of data as individual files on your file system. However, there are lots of optimizations a specialized database can do that a standard file system can not.
The benefit of Badger is that adding/fetching data to/from Badger is significantly faster than adding/fetching data to/from the default datastore, FlatFS. In some tests, adding data to Badger is 32x faster than FlatFS (in this release).
In this release, we're marking the badger datastore as stable. However, we're not yet enabling it by default. You can enable it at initialization by running: ipfs init --profile=badgerds
While Badger is a great solution, there are some issues you should consider before enabling it.
Badger is complicated. FlatFS pushes all the complexity down into the filesystem itself. That means that FlatFS is only likely to lose your data if your underlying filesystem gets corrupted while there are more opportunities for Badger itself to get corrupted.
Badger can use a lot of memory. In this release, we've tuned Badger to use ~20MB
of memory by default. However, it can still produce spikes as large as 1GiB
of data in memory usage when garbage collecting.
Finally, Badger isn't very aggressive when it comes to garbage collection, and we're still investigating ways to get it to more aggressively clean up after itself.
We suggest you use Badger if:
- Performance is your main requirement.
- You rarely delete anything.
- You have some memory to spare.
In the flatfs datastore, we've fixed an issue where temporary files could be left behind in some cases. While this release will avoid leaving behind temporary files, you may want to remove any left behind by previous releases:
> rm ~/.ipfs/blocks/*/put-*
> rm ~/.ipfs/blocks/du-*
We've also hardened several edge-cases in flatfs to reduce the impact of file descriptor limits, spurious crashes, etc.
Many improvements and bug fixes were made to libp2p over the course of this release. These release notes only include the most important and those most relevant to the content routing improvements.
When we fail to connect to a peer, we "backoff" and refuse to re-connect to that peer for a short period of time. This prevents us from wasting resources repeatedly failing to connect to the same unreachable peer.
Unfortunately, the old backoff logic was flawed: if we failed to connect to a peer and entered the "backoff" state, we wouldn't try to re-connect to that peer even if we had learned new and potentially working addresses for the peer. We've fixed this by applying backoff to each address instead of to the peer as a whole. This achieves the same result as we'll stop repeatedly trying to connect to the peer at known-bad addresses, but it allows us to reach the peer if we later learn about a good address.
This release uses Automatic NAT Detection (AutoNAT) - determining if the node is reachable from the public internet - to make decisions about how to participate in IPFS. This subsystem is used to determine if the node should store some of the public DHT, and if it needs to use relays to be reached by others. In short:
- An AutoNAT client asks a node running an AutoNAT service if it can be reached at one of a set of guessed addresses.
- The AutoNAT service attempts to dial back those addresses, with some restrictions. We won't dial back to a different IP address, for example.
- If the AutoNAT service succeeds, it reports back the address it successfully dialed, and the AutoNAT client knows that it is reachable from the public internet.
All nodes act as AutoNAT clients to determine if they should switch into DHT server mode. As of this release, nodes will by default run the service side of AutoNAT - verifying connectivity - for up to 30 peers every minute. This service should have minimal overhead and will be disabled for nodes in the lowpower
configuration profile, and those which believe they are not publicly reachable.
In addition to enabling the AutoNAT service by default, this release changes the AutoNAT config options:
- The
Swarm.EnableAutoNATService
option has been removed. - A new AutoNAT section has been added to the config. This section is empty by default.
If you've ever run a command like ipfs swarm peers
, you've likely seen paths that look like /ip4/193.45.1.24/tcp/4001/ipfs/QmSomePeerID
. These paths are not file paths, they're multiaddrs; addresses of peers on the network.
Unfortunately, /ipfs/Qm...
is also the same path format we use for files. This release, changes the multiaddr format from /ip4/193.45.1.24/tcp/4001/ipfs/QmSomePeerID
to /ip4/193.45.1.24/tcp/4001/p2p/QmSomePeerID
to make the distinction clear.
What this means for users:
- Old-style multiaddrs will still be accepted as inputs to IPFS.
- If you were using a multiaddr library (go, js, etc.) to name files because
/ipfs/QmSomePeerID
looks like/ipfs/QmSomeFile
, your tool may break if you upgrade this library. - If you're manually parsing multiaddrs and are searching for the string
/ipfs/
..., you'll need to search for/p2p/...
.
Previously, IPFS did not enforce a minimum RSA key size. In this release, we've introduced a minimum 2048 bit RSA key size. IPFS generates 2048 bit RSA keys by default so this shouldn't be an issue for anyone in practice. However, users who explicitly chose a smaller key size will not be able to communicate with new nodes.
Unfortunately, some of the bootstrap peers did intentionally generate 1024 bit RSA keys so they'd have vanity peer addresses (starting with QmSoL for "solar net"). All IPFS nodes should also have peers with >= 2048 bit RSA keys in their bootstrap list, but we've introduced a migration to ensure this.
We implemented this change to follow security best practices and to remove a potential foot-gun. However, in practice, the security impact of allowing insecure RSA keys should have been next to none because IPFS doesn't trust other peers on the network anyways.
In this release, we're switching TLS to be the default transport. This means we'll try to encrypt the connection with TLS before re-trying with SECIO.
Contrary to the announcement in the go-ipfs 0.4.23 release notes, this release does not remove SECIO support to maintain compatibility with js-ipfs.
Note: The Experimental.PreferTLS
configuration option is now ignored.
SECIO should be considered to be well on the way to deprecation and will be completely disabled in either the next release (0.6.0, ~mid May) or the one following that (0.7.0, ~end of June). Before SECIO is disabled, support will be added for the NOISE transport for compatibility with other IPFS implementations.
If you've been using the experimental QUIC support, this release upgrades to a new and incompatible version of the QUIC protocol (draft 27). Old and new go-ipfs nodes will still interoperate, but not over the QUIC transport.
We intend to standardize on this draft of the QUIC protocol and enable QUIC by default in the next release if all goes well.
NOTE: QUIC does not yet support private networks.
In addition to a bunch of bug fixes, we've made two improvements to the gateway.
You can play with both of these features by visiting:
http://bafybeia6po64b6tfqq73lckadrhpihg2oubaxgqaoushquhcek46y3zumm.ipfs.localhost:8080
First up, we've changed how URLs in the IPFS gateway work for better browser
security. The gateway will now redirect from
http://localhost:8080/ipfs/CID/...
to http://CID.ipfs.localhost:8080/...
by
default. This:
- Ensures that every dapp gets its own browser origin.
- Makes it easier to write websites that "just work" with IPFS because absolute paths will now work (though you should still use relative links because they're better).
Paths addressing the gateway by IP address (http://127.0.0.1:5001/ipfs/CID
) will not be altered as IP addresses can't have subdomains.
Note: cURL doesn't follow redirects by default. To avoid breaking cURL and other clients that don't support redirects, go-ipfs will return the requested file along with the redirect. Browsers will follow the redirect and abort the download while cURL will ignore the redirect and finish the download.
The second feature is a face-lift to the directory listing theme and color palette.
http://bafybeia6po64b6tfqq73lckadrhpihg2oubaxgqaoushquhcek46y3zumm.ipfs.localhost:8080
This release includes several new IPNS and IPNS-related features.
IPFS now resolves ENS names (e.g., /ipns/ipfs.eth
) via DNSLink provided by https://eth.link service.
IPFS has had experimental support for resolving IPNS over pubsub for a while. However, in the past, this feature was passive. When resolving an IPNS name, one would join a pubsub topic for the IPNS name and subscribe to future updates. Unfortunately, this wouldn't speed-up initial IPNS lookups.
In this release, we've introduced a new "record fetch" protocol to speedup the initial lookup. Now, after subscribing to the pubsub topic for the IPNS key, nodes will use this new protocol to "fetch" the last-seen IPNS record from all peers subscribed to the topic.
This feature will be enabled by default in 0.6.0.
IPNS names can now be expressed as special multibase CIDs. E.g.,
/ipns/bafzbeibxfjp4gaxc4cdn57257cyvc7jfa4rlp4e5min6geg44m57g6nx7e
Importantly, this allows IPNS names to appear in subdomains in the new subdomain gateway feature.
We have made two major changes to the pubsub subsystem in this release:
- Pubsub now more aggressively finds and connects to other peers subscribing to the same topic.
- Go-ipfs has switched its default pubsub router from "floodsub", an inefficient but simple "flooding" pubsub implementation, to "gossipsub".
PubSub will be stabilized in go-ipfs 0.6.0.
The IPFS CLI and API have a couple of new features and changes.
IPFS has two HTTP APIs:
- Port 5001: http://localhost:5001/api/v0/... - the API
- Port 8080: http://localhost:8080/api/v0/... - a read-only subset of the API, accessible via the gateway
As of this release, the main IPFS API (port 5001) will only accept POST requests. This change is necessary to tighten cross origin security in browsers.
If you're using the go-ipfs API in your application, you may need to change GET calls to POST calls or upgrade your libraries and tools.
- go - go-ipfs-api - v0.0.3
- js-ipfs-http-api - v0.41.1
- orbit-db - v0.24.0 (unreleased)
If you've ever seen the error:
Error: api not running
when trying to run a command without the daemon running, we have good news! You
should never see this error again. The ipfs
command now correctly detects that the daemon is not, in fact, running, and directly opens the IPFS repo.
The ipfs repo fsck
now does nothing but print an error message. Previously, it was used to cleanup some lock files: the "api" file that caused the aforementioned "api not running" error and the repo lock. However, this is no longer necessary.
It's now possible to initialize an IPFS node with an existing IPFS config by running:
> ipfs init /path/to/existing/config
This will re-use the existing configuration in it's entirety (including the private key) and can be useful when:
- Migrating a node's identity between machines without keeping the data.
- Resetting the datastore.
Files can now be ignored on add by passing the --ignore
and/or
--ignore-rules-path
flags.
--ignore=PATTERN
will ignore all files matching the gitignore rule PATTERN.--ignore-rules-path=FILENAME
will apply the gitignore rules from the specified file.
For example, to add a git repo while ignoring all files git would ignore, you could run:
> cd path/to/some/repo
> ipfs add -r --hidden=false --ignore=.git --ignore-rules-path=.gitignore .
It's now possible to add data directly from a named pipe:
> mkfifo foo
> echo -n "hello " > foo &
> echo -n "world" > bar &
> ipfs add foo bar
This can be useful when adding data from multiple streaming sources.
NOTE: To avoid surprising users, IPFS will only add data from FIFOs directly named on the command line, not FIFOs in a recursively added directory. Otherwise, ipfs add
would halt whenever it encountered a FIFO with no data to be read leading to difficult to debug stalls.
IPFS now allows rapid reading and writing of blocks in .car
format. The functionality is accessible via the experimental dag import
and dag export
commands:
~$ ipfs dag export QmQPeNsJPyVWPFDVHb77w8G42Fvo15z4bG2X8D2GhfbSXc \
| xz > welcome_to_ipfs.car.xz
0s 6.73 KiB / ? [-------=-------------------------------------] 5.16 MiB/s 0s
Then on another ipfs
instance, not even connected to the network:
~$ xz -dc welcome_to_ipfs.car.xz | ipfs dag import
Pinned root QmQPeNsJPyVWPFDVHb77w8G42Fvo15z4bG2X8D2GhfbSXc success
We've made two minor changes to the pinning subsystem:
ipfs pin ls --stream
allows streaming a pin listing.ipfs pin update
no longer holds the global pin lock while fetching files from the network. This should hopefully make it significantly more useful.
The go-ipfs daemon has switched to using Uber's Zap. Unlike our previous logging system, Zap supports structured logging which can make parsing, filtering, and analyzing go-ipfs logs much simpler.
To enable structured logging, set the IPFS_LOGGING_FMT
environment variable to "json".
Note: while we've switched to using Zap as the logging backend, most of go-ipfs still logs strings.
For Linux users, this release includes support for two systemd features: socket activation and startup/shutdown notifications. This makes it possible to:
- Start IPFS on demand on first use.
- Wait for IPFS to finish starting before starting services that depend on it.
You can find the new systemd units in the go-ipfs repo under misc/systemd.
This release supports exposing the IPFS API over a unix domain socket in the filesystem. You use this feature, run:
> ipfs config Addresses.API "/unix/path/to/socket/location"
We've made a few improvements to our docker image in this release:
- It can now be cross-built for multiple architectures.
- It now builds go-ipfs with OpenSSL support by default for faster libp2p handshakes.
- A private-network "swarm" key can now be passed in to a docker image via either the
IPFS_SWARM_KEY=<inline key>
orIPFS_SWARM_KEY_FILE=<path/to/key/file>
docker variables. Check out the Docker section of the README for more information.
go-ipfs plugins allow users to extend go-ipfs without modifying the original source-code. This release includes a few important changes.
See docs/plugins.md for details.
Plugins are now supported on MacOS, in addition to Linux. Unfortunately, Go still doesn't support plugins on Windows.
This release introduces a new InternalPlugin
plugin type. When started, this plugin will be passed a raw *IpfsNode
object, giving it access to all go-ipfs internals.
This plugin interface is permanently unstable as it has access to internals that can change frequently. However, it should allow power-users to develop deeply integrated extensions to go-ipfs, out-of-tree.
BREAKING
Plugins can now be configured and/or disabled via the ipfs config file.
To make this possible, the plugin interface has changed. The Init
function now takes an *Environment
object. Specifically, the plugin signature has changed from:
type Plugin interface {
Name() string
Version() string
Init() error
}
to
type Environment struct {
// Path to the IPFS repo.
Repo string
// The plugin's config, if specified.
Config interface{}
}
type Plugin interface {
Name() string
Version() string
Init(env *Environment) error
}
IPFS uses repo migrations to make structural changes to the "repo" (the config, data storage, etc.) on upgrade.
This release includes two very simple repo migrations: a config migration to ensure that the config contains working bootstrap nodes and a keystore migration to base32 encode all key filenames.
In general, migrations should not require significant manual intervention. However, you should be aware of migrations and plan for them.
- If you update go-ipfs with
ipfs update
,ipfs update
will run the migration for you. Note:ipfs update
will refuse to run the migrations while ipfs itself is running. - If you start the ipfs daemon with
ipfs daemon --migrate
, ipfs will migrate your repo for you on start.
Otherwise, if you want more control over the repo migration process, you can manually install and run the repo migration tool.
AUTOMATIC MIGRATION REQUIRED
The first migration will update the bootstrap peer list to:
- Replace the old bootstrap nodes (ones with peer IDs starting with QmSoL), with new bootstrap nodes (ones with addresses that start with
/dnsaddr/bootstrap.libp2p.io
). - Rewrite the address format from
/ipfs/QmPeerID
to/p2p/QmPeerID
.
We're migrating addresses for a few reasons:
- We're using DNS to address the new bootstrap nodes so we can change the underlying IP addresses as necessary.
- The new bootstrap nodes use 2048 bit keys while the old bootstrap nodes use 1024 bit keys.
- We're normalizing the address format to
/p2p/Qm...
.
Note: This migration won't add the new bootstrap peers to your config if you've explicitly removed the old bootstrap peers. It will also leave custom entries in the list alone. In other words, if you've customized your bootstrap list, this migration won't clobber your changes.
AUTOMATIC MIGRATION REQUIRED
go-ipfs stores additional keys (i.e., all keys other than the "identity" key) in the keystore. You can list these keys with ipfs key
.
Currently, the keystore stores keys as regular files, named after the key itself. Unfortunately, filename restrictions and case-insensitivity are platform specific. To avoid platform specific issues, we're base32 encoding all key names and renaming all keys on-disk.
As usual, this release contains several Windows specific fixes and improvements:
- Double-clicking
ipfs.exe
will now start the daemon inside a console window. ipfs add -r
now correctly recognizes and ignores hidden files on Windows.- The default datastore, flatfs, now takes extra precautions to avoid "file in use" errors caused by both go-ipfs and external programs like anti-viruses. If you've ever seen go-ipfs print out an "access denied" or "file in use" error on Windows, this issue was likely the cause.
- github.com/ipfs/go-ipfs:
- fix: non-blocking peerlog logging (ipfs/go-ipfs#7232)
- doc: update go-ipfs docs for 0.5.0 release (ipfs/go-ipfs#7229)
- Add additional documentation links to the new issue screen (ipfs/go-ipfs#7226)
- docs: note that ShardingEnabled is a global flag (ipfs/go-ipfs#7218)
- update log helptext to match actual levels (ipfs/go-ipfs#7199)
- Chore/harden car test a bit harder (ipfs/go-ipfs#7209)
- fix: fix duplicate block issue in bitswap (ipfs/go-ipfs#7202)
- feat: update docker image (ipfs/go-ipfs#7191)
- feat: update dir index (ipfs/go-ipfs#7192)
- fix: update the dht to fix yggdrasil (ipfs/go-ipfs#7186)
- Choose architecture when download tini into docker container (ipfs/go-ipfs#7187)
- Fix typos and cleanup (ipfs/go-ipfs#7181)
- Fix typos (ipfs/go-ipfs#7180)
- feat: webui 2.7.5 (ipfs/go-ipfs#7176)
- integration test for the dual dht (ipfs/go-ipfs#7151)
- fix: subdomain redirect for dir CIDs (ipfs/go-ipfs#7165)
- add autonat config options (ipfs/go-ipfs#7162)
- docs: fix link to version.go (ipfs/go-ipfs#7157)
- feat: webui v2.7.4 (ipfs/go-ipfs#7159)
- fix the typo in the serveHTTPApi (ipfs/go-ipfs#7156)
- test(sharness): improve CAR tests to remove some potential races (ipfs/go-ipfs#7154)
- feat: introduce the dual WAN/LAN DHT (ipfs/go-ipfs#7127)
- fix: invalidate cache on failed publish (ipfs/go-ipfs#7152)
- Temporarily disable gc-race test (ipfs/go-ipfs#7148)
- Beef up and harden import/export tests (ipfs/go-ipfs#7140)
- Filter dials to blocked subnets, even when using DNS. (ipfs/go-ipfs#6996)
- Dag export command, complete (ipfs/go-ipfs#7036)
- Adding Fission to IPFS early testers page (ipfs/go-ipfs#7119)
- feat: bump version (ipfs/go-ipfs#7110)
- feat: initial update to the changelog for 0.5.0 (ipfs/go-ipfs#6977)
- feat(dht): update to cypress DHT in backwards compatibility mode (ipfs/go-ipfs#7103)
- update bash completion for
ipfs add
(ipfs/go-ipfs#7102) - HTTP API: Only allow POST requests (plus OPTIONS) (ipfs/go-ipfs#7097)
- Revert last change (the default is now printed twice) (ipfs/go-ipfs#7098)
- Fix #4996: Improve help text for "ipfs files cp" (ipfs/go-ipfs#7069)
- changed brew to brew cask (ipfs/go-ipfs#7072)
- fix: remove internal relay discovery (ipfs/go-ipfs#7064)
- docs/experimental-features.md: typo (ipfs/go-ipfs#7062)
- fix: get rid of shutdown errors (ipfs/go-ipfs#7058)
- feat: tls by default (ipfs/go-ipfs#7055)
- fix: downgrade to go 1.13 (ipfs/go-ipfs#7054)
- Keystore: minor maintenance (ipfs/go-ipfs#7043)
- fix(keystore): avoid racy filesystem access (ipfs/go-ipfs#6999)
- Forgotten go-fmt (ipfs/go-ipfs#7030)
- feat: update go-libp2p & go-bitswap (ipfs/go-ipfs#7028)
- Introducing EncodedFSKeystore with base32 encoding (#5947) (ipfs/go-ipfs#6955)
- feat: improve key lookup (ipfs/go-ipfs#7023)
- feat(file-ignore): add ignore opts to add cmd (ipfs/go-ipfs#7017)
- feat: gateway subdomains + http proxy mode (ipfs/go-ipfs#6096)
- Chore/sharness fixes 2019 03 16 (ipfs/go-ipfs#6997)
- Support pipes when named on the cli explicitly (ipfs/go-ipfs#6998)
- Fix a typo (ipfs/go-ipfs#7000)
- fix: revert changes to the user agent (ipfs/go-ipfs#6993)
- feat(peerlog): log protocols/versions (ipfs/go-ipfs#6972)
- feat: docker build and tag from ci (ipfs/go-ipfs#6949)
- cmd: ipfs handle GUI environment on Windows (ipfs/go-ipfs#6646)
- Chore/macos sharness fixes (ipfs/go-ipfs#6988)
- Update to go-libp2p 0.6.0 (ipfs/go-ipfs#6914)
- mount: switch over to the CoreAPI (ipfs/go-ipfs#6602)
- doc(commands): document that
dht put
takes a file (ipfs/go-ipfs#6960) - docs: update licence info in README (ipfs/go-ipfs#6942)
- docs: fix example for files.write (ipfs/go-ipfs#6943)
- feat(graphsync): mount the graphsync libp2p protocol (ipfs/go-ipfs#6892)
- feat: update go in docker container (ipfs/go-ipfs#6933)
- remove expired GPG key from README (ipfs/go-ipfs#6931)
- test(sharness): test our tests (ipfs/go-ipfs#6908)
- fix: broken interop tests (ipfs/go-ipfs#6899)
- feat: pass IPFS_PLUGINS to docker build (ipfs/go-ipfs#6898)
- doc(add): document hash stability (ipfs/go-ipfs#6891)
- feat: add peerlog plugin (ipfs/go-ipfs#6887)
- doc(plugin): document internal plugins (ipfs/go-ipfs#6888)
- Fix #6878: Improve MFS Cli documentation (ipfs/go-ipfs#6882)
- Update the license distributed with dist builds to the dual one (ipfs/go-ipfs#6879)
- doc: add license URLs so go's doc service can detect our license (ipfs/go-ipfs#6874)
- doc: rename COPYRIGHT to LICENSE (ipfs/go-ipfs#6873)
- fix: fix id addr format (ipfs/go-ipfs#6872)
- Help text update for 'ipfs key gen' (ipfs/go-ipfs#6867)
- fix: make rsa the default key type (ipfs/go-ipfs#6864)
- doc(config): cleanup (ipfs/go-ipfs#6855)
- Allow building non-amd64 Docker images (ipfs/go-ipfs#6854)
- doc(release): add Charity Engine to the early testers programme (ipfs/go-ipfs#6850)
- fix: fix a potential out of bounds issue in fuse (ipfs/go-ipfs#6847)
- fix(build): instruct users to use GOTAGS, not GOFLAGS (ipfs/go-ipfs#6843)
- doc(release): document how RCs should be communicated (ipfs/go-ipfs#6845)
- doc(release): move WebUI from manual tests to automated tests section (ipfs/go-ipfs#6838)
- test(sharness): fix typo (ipfs/go-ipfs#6835)
- test: E2E tests against ipfs-webui HEAD (ipfs/go-ipfs#6825)
- mkreleaslog: improve edge-cases (ipfs/go-ipfs#6833)
- fix: don't fail to collect profiles if no ipfs bin (ipfs/go-ipfs#6829)
- update dockerfile and use openssl (ipfs/go-ipfs#6828)
- docs: define Gateway.PathPrefixes (ipfs/go-ipfs#6826)
- fix(badgerds): turn off sync writes by default (ipfs/go-ipfs#6819)
- gateway cleanups (ipfs/go-ipfs#6820)
- make it possible to change the codec with the
ipfs cid
subcommand (ipfs/go-ipfs#6817) - improve gateway symlink handling (ipfs/go-ipfs#6680)
- Inclusion of the presence of the go-ipfs package in Solus (ipfs/go-ipfs#6809)
- Fix Typos (ipfs/go-ipfs#6807)
- Sharness macos no brainer fixes (ipfs/go-ipfs#6805)
- Support Asynchronous Datastores (ipfs/go-ipfs#6785)
- update documentation for /ipfs -> /p2p multiaddr switch (ipfs/go-ipfs#6538)
- IPNS over PubSub as an Independent Transport (ipfs/go-ipfs#6758)
- docs: add information on how to enable experiments (ipfs/go-ipfs#6792)
- Change Reporter to BandwidthCounter in IpfsNode (ipfs/go-ipfs#6793)
- update go-datastore (ipfs/go-ipfs#6791)
- go fmt: go-ipfs-as-a-library (ipfs/go-ipfs#6784)
- feat: web ui 2.7.2 (ipfs/go-ipfs#6778)
- extract the pinner to go-ipfs-pinner and dagutils into go-merkledag (ipfs/go-ipfs#6771)
- fix #2203: omit the charset attribute when Content-Type is text/html (ipfs/go-ipfs#6743)
- Pin ls traverses all indirect pins (ipfs/go-ipfs#6705)
- fix: ignore nonexistent when force rm (ipfs/go-ipfs#6773)
- introduce IpfsNode Plugin (ipfs/go-ipfs#6719)
- improve documentation and fix dht put bug (ipfs/go-ipfs#6750)
- Adding alias for
ipfs repo stat
. (ipfs/go-ipfs#6769) - doc(gateway): document dnslink (ipfs/go-ipfs#6767)
- pin: add context and error return to most of the Pinner functions (ipfs/go-ipfs#6715)
- feat: web ui 2.7.1 (ipfs/go-ipfs#6762)
- doc(README): document requirements for cross-compiling with OpenSSL support (ipfs/go-ipfs#6738)
- feat: web ui 2.6.0 (ipfs/go-ipfs#6740)
- Add high-level go-ipfs architecture diagram (ipfs/go-ipfs#6727)
- docs: remove extra ) on the example README (ipfs/go-ipfs#6733)
- update maintainer label (ipfs/go-ipfs#6735)
- ipfs namespace is now being provided to Prometheus (ipfs/go-ipfs#6643)
- feat: web ui 2.5.8 (ipfs/go-ipfs#6718)
- docs: add connmgr to config.md toc (ipfs/go-ipfs#6712)
- feat: web ui 2.5.7 (ipfs/go-ipfs#6707)
- README: improve build documentation (ipfs/go-ipfs#6706)
- Introduce buzhash chunker (ipfs/go-ipfs#6701)
- Pinning interop: Pin ls returns appropriate zero value (ipfs/go-ipfs#6685)
- fix(resolve): correctly handle .eth domains (ipfs/go-ipfs#6700)
- Update README.md (ipfs/go-ipfs#6697)
- daemon: support unix domain sockets for the API/gateway (ipfs/go-ipfs#6678)
- docs: guide users to the right locations for questions (ipfs/go-ipfs#6691)
- docs: readme improvements (ipfs/go-ipfs#6693)
- docs: link remaining docs available, guide people to the right locations (ipfs/go-ipfs#6694)
- docs: fix broken url (ipfs/go-ipfs#6692)
- add systemd support (ipfs/go-ipfs#6675)
- feat: add ipfs version info to prometheus metrics (ipfs/go-ipfs#6688)
- Fix typo (ipfs/go-ipfs#6686)
- github: migrate actions (ipfs/go-ipfs#6681)
- Add bridged chats (ipfs/go-ipfs#6653)
- doc(config): improve DisableNatPortMap documentation (ipfs/go-ipfs#6655)
- plugins: support Close() for Tracer plugins as well (ipfs/go-ipfs#6672)
- fix: make collect-profiles.sh work on mac (ipfs/go-ipfs#6673)
- namesys(test): test TTL on publish (ipfs/go-ipfs#6671)
- discovery: improve mdns warnings (ipfs/go-ipfs#6665)
- feat: web ui 2.5.4 (ipfs/go-ipfs#6664)
- cmds(help): fix swarm filter add/rm help text (ipfs/go-ipfs#6654)
- feat: webui 2.5.3 (ipfs/go-ipfs#6638)
- feat: web ui 2.5.1 (ipfs/go-ipfs#6630)
- docs: add multiple gateway and api addrs (ipfs/go-ipfs#6631)
- doc: add post-release checklist (ipfs/go-ipfs#6625)
- docs: add ship date and next release issue opening time (ipfs/go-ipfs#6620)
- docker: libdl dependency (ipfs/go-ipfs#6624)
- docs: improvements to the release doc (ipfs/go-ipfs#6616)
- plugins: add support for plugin configs (ipfs/go-ipfs#6613)
- Update README.md (ipfs/go-ipfs#6615)
- doc: remove gmake instructions (ipfs/go-ipfs#6614)
- feat: add ability to use existing config during init (ipfs/go-ipfs#6489)
- doc: expand and cleanup badger documentation (ipfs/go-ipfs#6611)
- feat: improve plugin preload logic (ipfs/go-ipfs#6576)
- version: don't print 'VERSION-' if no commit is specified (ipfs/go-ipfs#6609)
- Update go-libp2p, fix tests with weak RSA keys (ipfs/go-ipfs#6555)
- cmds/refs: fix ipfs refs for sharded directories (ipfs/go-ipfs#6601)
- fix: spammy mock when testing (ipfs/go-ipfs#6583)
- docker: update the docker image (ipfs/go-ipfs#6582)
- add release process graphic (ipfs/go-ipfs#6568)
- feat: web ui 2.5.0 (ipfs/go-ipfs#6566)
- Add swarm key variables to container daemon (ipfs/go-ipfs#6554)
- doc: update the release template (ipfs/go-ipfs#6561)
- merge changelog and bump version (ipfs/go-ipfs#6559)
- require GNU make (ipfs/go-ipfs#6551)
- tweak the release process (ipfs/go-ipfs#6553)
- Allow resolution of .eth names via .eth.link (ipfs/go-ipfs#6448)
- README: update minimum system requirements and recommend OpenSSL (ipfs/go-ipfs#6543)
- fix and improve the writable gateway (ipfs/go-ipfs#6539)
- feat: add install instructions for external commands (ipfs/go-ipfs#6541)
- fix: slightly faster gc (ipfs/go-ipfs#6505)
- fix {net,open}bsd build by disabling fuse on openbsd (ipfs/go-ipfs#6535)
- mk: handle stripping paths when GOPATH contains whitespace (ipfs/go-ipfs#6536)
- make gossipsub the default routing protocol for pubsub (ipfs/go-ipfs#6512)
- doc: align the early testers program description with its goal (ipfs/go-ipfs#6529)
- feat: add --long as alias for -l in files.ls (ipfs/go-ipfs#6528)
- switch to new merkledag walk functions (ipfs/go-ipfs#6499)
- readme: fix CI badge (ipfs/go-ipfs#6521)
- Adds Siderus in early testers (ipfs/go-ipfs#6517)
- Extract Filestore (ipfs/go-ipfs#6511)
- readme: fix scoop bucket command error (ipfs/go-ipfs#6510)
- sharness: test pin ls stream (ipfs/go-ipfs#6504)
- Improve pin/update description (ipfs/go-ipfs#6501)
- pin cmd: stream recursive pins (ipfs/go-ipfs#6493)
- Document the AddrFilters option (ipfs/go-ipfs#6459)
- feat: make it easier to load custom plugins (ipfs/go-ipfs#6474)
- document the debug script (ipfs/go-ipfs#6486)
- Extract provider module to
go-ipfs-provider
(ipfs/go-ipfs#6421) - ignore stale API files and deprecate ipfs repo fsck (ipfs/go-ipfs#6478)
- Fix node construction queue error (ipfs/go-ipfs#6480)
- Update the required go version in the README (ipfs/go-ipfs#6462)
- gitmodules: use https so we don't need an ssh key (ipfs/go-ipfs#6450)
- doc: add another Windows package to README (ipfs/go-ipfs#6440)
- Close started plugins when one of them fails to start. (ipfs/go-ipfs#6438)
- Load plugins on darwin/macOS (ipfs/go-ipfs#6439)
- assets: move away from gx (ipfs/go-ipfs#6414)
- Fix a typo (ipfs/go-ipfs#6432)
- docs: fix install guide link (ipfs/go-ipfs#6423)
- Deps: update go-libp2p-http to its new libp2p location (ipfs/go-ipfs#6422)
- install.sh: Fix wrong destination path for ipfs binary (ipfs/go-ipfs#6424)
- build: strip GOPATH from build paths (ipfs/go-ipfs#6412)
- libp2p: moves discovery after host listen (ipfs/go-ipfs#6415)
- remove mentions of gx from windows build docs (ipfs/go-ipfs#6413)
- build: use protoc-gen-* from gomod (ipfs/go-ipfs#6411)
- add unixfs get metric (ipfs/go-ipfs#6406)
- Run JS interop in CircleCI (ipfs/go-ipfs#6409)
- Usage of context helper in Blockstore provider (ipfs/go-ipfs#6399)
- docs: default value for HashOnRead is false (ipfs/go-ipfs#6401)
- block cmd: allow adding multiple blocks at once (ipfs/go-ipfs#6331)
- Remove Repo from routing fx provider parameter (ipfs/go-ipfs#6395)
- migrate to go-libp2p-core. (ipfs/go-ipfs#6384)
- feat: update Web UI to v2.4.6 (ipfs/go-ipfs#6392)
- Introduce first strategic provider: do nothing (ipfs/go-ipfs#6292)
- github.com/ipfs/go-bitswap (v0.0.8-e37498cf10d6 -> v0.2.13):
- refactor: remove WantManager (ipfs/go-bitswap#374)
- Send CANCELs when session context is cancelled (ipfs/go-bitswap#375)
- refactor: remove unused code (ipfs/go-bitswap#373)
- Change timing for DONT_HAVE timeouts to be more conservative (ipfs/go-bitswap#371)
- fix: avoid calling ctx.SetDeadline() every time we send a message (ipfs/go-bitswap#369)
- feat: optimize entry sorting in MessageQueue (ipfs/go-bitswap#356)
- Move connection management into networking layer (ipfs/go-bitswap#351)
- refactor: simplify messageQueue onSent (ipfs/go-bitswap#349)
- feat: prioritize more important wants (ipfs/go-bitswap#346)
- fix: in message queue only send cancel if want was sent (ipfs/go-bitswap#345)
- fix: ensure wantlist gauge gets decremented on disconnect (ipfs/go-bitswap#332)
- avoid copying messages and improve logging (ipfs/go-bitswap#326)
- fix: log unexpected condition in peerWantManager.prepareSendWants() (ipfs/go-bitswap#325)
- wait for sessionWantSender to shutdown before completing session shutdown (ipfs/go-bitswap#317)
- Perf/message queue (ipfs/go-bitswap#307)
- feat: add a custom CID type (ipfs/go-bitswap#308)
- feat: expose the full wantlist through GetWantlist (ipfs/go-bitswap#300)
- Clean up logs (ipfs/go-bitswap#299)
- Fix order of session broadcast wants (ipfs/go-bitswap#291)
- fix flaky TestRateLimitingRequests (ipfs/go-bitswap#296)
- fix flaky TestDontHaveTimeoutMgrTimeout (ipfs/go-bitswap#293)
- fix: re-export testinstance/testnet (ipfs/go-bitswap#289)
- Simulate DONT_HAVE when peer doesn't respond to want-block (new peers) (ipfs/go-bitswap#284)
- Be less aggressive when pruning peers from session (ipfs/go-bitswap#276)
- fix: races in tests (ipfs/go-bitswap#279)
- Refactor: simplify session peer management (ipfs/go-bitswap#275)
- Prune peers that send too many consecutive DONT_HAVEs (ipfs/go-bitswap#261)
- feat: debounce wants manually (ipfs/go-bitswap#255)
- Fix bug with signaling peer availability to sessions (ipfs/go-bitswap#247)
- feat: move internals to an internal package (ipfs/go-bitswap#242)
- PoC of Bitswap protocol extensions implementation (ipfs/go-bitswap#189)
- fix: abort when the context is canceled while getting blocks (ipfs/go-bitswap#240)
- Add bridged chats (ipfs/go-bitswap#198)
- reduce session contention (ipfs/go-bitswap#188)
- Fix: don't ignore received blocks for pending wants (ipfs/go-bitswap#174)
- Test: fix flakey session peer manager tests (ipfs/go-bitswap#185)
- Refactor: use global pubsub notifier (ipfs/go-bitswap#177)
- network: Allow specifying protocol prefix (ipfs/go-bitswap#171)
- fix: memory leak in latency tracker on timeout after cancel (ipfs/go-bitswap#164)
- Fix typo (ipfs/go-bitswap#158)
- Feat: Track Session Peer Latency More Accurately (ipfs/go-bitswap#149)
- ci(circleci): add benchmark comparisons (ipfs/go-bitswap#147)
- aggressively free memory (ipfs/go-bitswap#143)
- Enhanced logging for bitswap (ipfs/go-bitswap#137)
- fix: rand.Intn(0) panics (ipfs/go-bitswap#144)
- fix some naming nits and broadcast on search (ipfs/go-bitswap#139)
- feat(sessions): add rebroadcasting, search backoff (ipfs/go-bitswap#133)
- testutil: fix block generator (ipfs/go-bitswap#135)
- migrate to go-libp2p-core. (ipfs/go-bitswap#132)
- github.com/ipfs/go-blockservice (v0.0.3 -> v0.1.3):
- fix ci badge and lints (ipfs/go-blockservice#52)
- demote warning to debug log (ipfs/go-blockservice#30)
- nil exchange is okay (ipfs/go-blockservice#29)
- set the session context (ipfs/go-blockservice#28)
- make blockservice AddBlocks return more quickly (ipfs/go-blockservice#10)
- feat(session): instantiated sessions lazily (ipfs/go-blockservice#27)
- github.com/ipfs/go-cid (v0.0.4 -> v0.0.5):
- fix: enforce minimal encoding (ipfs/go-cid#99)
- github.com/ipfs/go-datastore (v0.0.5 -> v0.4.4):
- Fix test log message about number of values put (ipfs/go-datastore#150)
- test suite: Add ElemCount to control how many elements are added. (ipfs/go-datastore#151)
- fix: avoid filtering by prefix unless necessary (ipfs/go-datastore#147)
- feat: add upper-case keys at a known prefix (ipfs/go-datastore#148)
- test(suite): add a bunch of prefix tests for the new behavior (ipfs/go-datastore#145)
- Only count a key as an ancestor if there is a separator (ipfs/go-datastore#141)
- fix go-check path to use "gopkg.in/check.v1" (ipfs/go-datastore#144)
- LogDatastore fulfills the Datastore interface again (ipfs/go-datastore#142)
- Support Asynchronous Writing Datastores (ipfs/go-datastore#140)
- add a Size field to Query's Result (ipfs/go-datastore#134)
- Add clarifying comments on Query#String() (ipfs/go-datastore#138)
- Add a large test suite (ipfs/go-datastore#136)
- doc: add a lead maintainer (ipfs/go-datastore#135)
- feat: make not-found errors discoverable (ipfs/go-datastore#133)
- feat: make delete idempotent (ipfs/go-datastore#132)
- Misc Typo Fixes (ipfs/go-datastore#131)
- github.com/ipfs/go-ds-badger (v0.0.5 -> v0.2.4):
- fix: verify that the datastore is still open when querying (ipfs/go-ds-badger#87)
- feat: switch to file io and shrink tables (ipfs/go-ds-badger#83)
- fix: update go-datastore (ipfs/go-ds-badger#80)
- update datastore Interface (ipfs/go-ds-badger#77)
- query: always return the size (ipfs/go-ds-badger#78)
- feat(gc): make it possible to disable GC (ipfs/go-ds-badger#74)
- feat(gc): improve periodic GC logic (ipfs/go-ds-badger#73)
- periodic GC for badger datastore (ipfs/go-ds-badger#72)
- Fix combining query filters, offsets, and limits (ipfs/go-ds-badger#71)
- doc: add lead maintainer (ipfs/go-ds-badger#67)
- github.com/ipfs/go-ds-flatfs (v0.0.2 -> v0.4.4):
- move retries lower and retry rename ops (ipfs/go-ds-flatfs#82)
- cleanup putMany implementation (ipfs/go-ds-flatfs#80)
- feat: read harder (ipfs/go-ds-flatfs#78)
- fix: remove temporary files when multiple write operations conflict (ipfs/go-ds-flatfs#76)
- Windows CI + Fixes (ipfs/go-ds-flatfs#73)
- fix: close query when finished moving (ipfs/go-ds-flatfs#74)
- fix: ensure that we close the diskusage file, even if we fail to rename it (ipfs/go-ds-flatfs#72)
- feat: put all temporary files in the same directory and clean them up (ipfs/go-ds-flatfs#69)
- fix: only log when we find a file we don't expect (ipfs/go-ds-flatfs#68)
- Make flatfs robust (ipfs/go-ds-flatfs#64)
- Update Datastore Interface (ipfs/go-ds-flatfs#60)
- query: deny ReturnsSizes and ReturnExpirations instead of returning wrong result (ipfs/go-ds-flatfs#59)
- doc: add a lead maintainer (ipfs/go-ds-flatfs#55)
- make delete idempotent (ipfs/go-ds-flatfs#54)
- github.com/ipfs/go-ds-leveldb (v0.0.2 -> v0.4.2):
- prevent closing concurrently with other operations. (ipfs/go-ds-leveldb#42)
- feat: update go-datastore (ipfs/go-ds-leveldb#40)
- update datastore Interface (ipfs/go-ds-leveldb#36)
- query: always return the size (ipfs/go-ds-leveldb#35)
- doc: add a lead maintainer (ipfs/go-ds-leveldb#31)
- make delete idempotent (ipfs/go-ds-leveldb#30)
- github.com/ipfs/go-ds-measure (v0.0.1 -> v0.1.0):
- update datastore Interface (ipfs/go-ds-measure#23)
- Add Datastore Tests (ipfs/go-ds-measure#24)
- fix GetSize calls reported as Has (ipfs/go-ds-measure#20)
- github.com/ipfs/go-fs-lock (v0.0.1 -> v0.0.4):
- fix: revert small breaking change (ipfs/go-fs-lock#10)
- Enh/improve error handling (ipfs/go-fs-lock#9)
- Use path/filepath instead of path (ipfs/go-fs-lock#8)
- github.com/ipfs/go-ipfs-blockstore (v0.0.1 -> v0.1.4):
- return the correct size when only "has" is cached (ipfs/go-ipfs-blockstore#36)
- cache: switch to 2q (ipfs/go-ipfs-blockstore#20)
- github.com/ipfs/go-ipfs-chunker (v0.0.1 -> v0.0.5):
- fix: don't return an empty block at the end (ipfs/go-ipfs-chunker#22)
- Rigorous sizing checks (ipfs/go-ipfs-chunker#21)
- Improve performance of buzhash (ipfs/go-ipfs-chunker#17)
- Implement buzhash (ipfs/go-ipfs-chunker#16)
- Add benchmarks (ipfs/go-ipfs-chunker#15)
- github.com/ipfs/go-ipfs-cmds (v0.0.8 -> v0.2.2):
- Fix: disallow POST without Origin nor Referer from specific user agents (ipfs/go-ipfs-cmds#193)
- doc: document command fields (ipfs/go-ipfs-cmds#192)
- change HandledMethods to AllowGet and cleanup method handling (ipfs/go-ipfs-cmds#191)
- remove deprecated log.Warning(f) (ipfs/go-ipfs-cmds#180)
- http: configurable allowed request methods for the API. (ipfs/go-ipfs-cmds#190)
- #183 refactored the request options conversion code per the ticket requirements (ipfs/go-ipfs-cmds#187)
- fix typo (ipfs/go-ipfs-cmds#188)
- (ipfs/go-ipfs-cmds#183)
- fix: normalize options when parsing them (ipfs/go-ipfs-cmds#186)
- feat:add strings option; re-implement file ignore (ipfs/go-ipfs-cmds#181)
- Special-case accepting explicitly supplied named pipes (ipfs/go-ipfs-cmds#184)
- Chore/remove gx (ipfs/go-ipfs-cmds#182)
- http: allow specifying a custom http client (ipfs/go-ipfs-cmds#175)
- http: cleanup http related errors (ipfs/go-ipfs-cmds#173)
- fix: too many arguments error text (ipfs/go-ipfs-cmds#172)
- fallback executor support (ipfs/go-ipfs-cmds#171)
- make ErrorType a valid error and implement Unwrap on Error (ipfs/go-ipfs-cmds#170)
- feat: improve error codes (ipfs/go-ipfs-cmds#168)
- Fix a typo (ipfs/go-ipfs-cmds#169)
- github.com/ipfs/go-ipfs-config (v0.0.3 -> v0.5.3):
- fix: correct the default-datastore config profile (ipfs/go-ipfs-config#80)
- feat: disable autonat service when in lowpower mode (ipfs/go-ipfs-config#77)
- feat: add and use a duration helper type (ipfs/go-ipfs-config#76)
- feat: add an autonat config section (ipfs/go-ipfs-config#75)
- feat: remove Routing.PrivateType (ipfs/go-ipfs-config#74)
- feat: add private routing config field (ipfs/go-ipfs-config#73)
- feat: mark badger as stable (ipfs/go-ipfs-config#70)
- feat: remove PreferTLS experiment (ipfs/go-ipfs-config#71)
- feat: remove old bootstrap peers (ipfs/go-ipfs-config#67)
- add config options for proxy/subdomain (ipfs/go-ipfs-config#30)
- feat: add graphsync option (ipfs/go-ipfs-config#62)
- profile: badger profile now defaults to asynchronous writes (ipfs/go-ipfs-config#60)
- migrate multiaddrs from /ipfs -> /p2p (ipfs/go-ipfs-config#39)
- use key size constraints defined in libp2p (ipfs/go-ipfs-config#57)
- plugins: don't omit empty config values (ipfs/go-ipfs-config#46)
- make it easier to detect an uninitialized repo (ipfs/go-ipfs-config#45)
- nit: omit empty plugin values (ipfs/go-ipfs-config#44)
- add plugins config section (ipfs/go-ipfs-config#43)
- Add very basic (possibly temporary) Provider configs (ipfs/go-ipfs-config#38)
- fix string formatting of bootstrap peers (ipfs/go-ipfs-config#37)
- migrate to the consolidated libp2p (ipfs/go-ipfs-config#36)
- Add strategic provider system experiment flag (ipfs/go-ipfs-config#33)
- github.com/ipfs/go-ipfs-files (v0.0.3 -> v0.0.8):
- skip ignored files when calculating size (ipfs/go-ipfs-files#30)
- Feat/add ignore rules (ipfs/go-ipfs-files#26)
- revert(symlink): keep stat argument (ipfs/go-ipfs-files#23)
- feat: correctly report the size of symlinks (ipfs/go-ipfs-files#22)
- serialfile: fix handling of hidden paths on windows (ipfs/go-ipfs-files#21)
- feat: add WriteTo function (ipfs/go-ipfs-files#20)
- doc: fix formdata documentation (ipfs/go-ipfs-files#19)
- github.com/ipfs/go-ipfs-pinner (v0.0.1 -> v0.0.4):
- fix: don't hold the pin lock while updating pins (ipfs/go-ipfs-pinner#2)
- github.com/ipfs/go-ipfs-pq (v0.0.1 -> v0.0.2):
- Remove() (ipfs/go-ipfs-pq#5)
- Fix Peek() test (ipfs/go-ipfs-pq#4)
- add Peek() method (ipfs/go-ipfs-pq#3)
- add gomod support // tag v0.0.1. (ipfs/go-ipfs-pq#1)
- github.com/ipfs/go-ipfs-routing (v0.0.1 -> v0.1.0):
- migrate to go-libp2p-core (ipfs/go-ipfs-routing#22)
- github.com/ipfs/go-ipld-cbor (v0.0.2 -> v0.0.4):
- doc: add a lead maintainer (ipfs/go-ipld-cbor#65)
- fastpath CBOR (ipfs/go-ipld-cbor#64)
- github.com/ipfs/go-ipld-format (v0.0.2 -> v0.2.0):
- fix: change the batch size to avoid buffering too much (ipfs/go-ipld-format#56)
- doc: add a lead maintainer (ipfs/go-ipld-format#54)
- github.com/ipfs/go-ipld-git (v0.0.2 -> v0.0.3):
- Use RFC3339 to format dates, fixes #16 (ipfs/go-ipld-git#32)
- doc: add a lead maintainer (ipfs/go-ipld-git#41)
- github.com/ipfs/go-ipns (v0.0.1 -> v0.0.2):
- readme: add a lead maintainer (ipfs/go-ipns#25)
- github.com/ipfs/go-log (v0.0.1 -> v1.0.4):
- add IPFS_* env vars back for transitionary release of go-log (ipfs/go-log#67)
- Experimental: zap backend for go-log (ipfs/go-log#61)
- Spelling fix (ipfs/go-log#63)
- Deprecate EventLogging and Warning* functions (ipfs/go-log#62)
- github.com/ipfs/go-merkledag (v0.0.3 -> v0.3.2):
- fix: correctly construct sessions (ipfs/go-merkledag#56)
- Migrate dagutils from go-ipfs (ipfs/go-merkledag#50)
- Make getPBNode Public (ipfs/go-merkledag#49)
- Pull In Upstream Changes (ipfs/go-merkledag#1)
- fix: slightly reduce memory usage when walking large directory trees (ipfs/go-merkledag#45)
- fix: return ErrLinkNotFound when the link isn't found (ipfs/go-merkledag#44)
- fix: include root in searches by default (ipfs/go-merkledag#43)
- rework the graph walking functions with functional options (ipfs/go-merkledag#42)
- fix inconsistent EnumerateChildrenAsync behavior (ipfs/go-merkledag#41)
- github.com/ipfs/go-mfs (v0.0.7 -> v0.1.1):
- migrate to go-libp2p-core (ipfs/go-mfs#77)
- github.com/ipfs/go-peertaskqueue (v0.0.5-f09820a0a5b6 -> v0.2.0):
- Extend peer task queue to work with want-have / want-block (ipfs/go-peertaskqueue#8)
- migrate to go-libp2p-core (ipfs/go-peertaskqueue#4)
- github.com/ipfs/go-unixfs (v0.0.6 -> v0.2.4):
- fix: fix a panic when deleting (ipfs/go-unixfs#81)
- fix(dagreader): remove a buggy workaround for a gateway issue (ipfs/go-unixfs#80)
- fix: correctly handle symlink file sizes (ipfs/go-unixfs#78)
- fix: return the correct error from RemoveChild (ipfs/go-unixfs#76)
- update the last go-merkledag (ipfs/go-unixfs#75)
- fix: enumerate children (ipfs/go-unixfs#74)
- github.com/ipfs/interface-go-ipfs-core (v0.0.8 -> v0.2.7):
- Add pin ls tests for indirect pin traversal and pin type precedence (ipfs/interface-go-ipfs-core#47)
- fix(test): fix a flaky pubsub test (ipfs/interface-go-ipfs-core#45)
- README: stub (ipfs/interface-go-ipfs-core#44)
- test: test ReadAt if implemented (ipfs/interface-go-ipfs-core#43)
- test: fix put with hash test (ipfs/interface-go-ipfs-core#41)
- Bump go-libp2p-core, up test key size to 2048 (ipfs/interface-go-ipfs-core#39)
- migrate to go-libp2p-core. (ipfs/interface-go-ipfs-core#35)
- tests: expose TestSuite (ipfs/interface-go-ipfs-core#34)
- github.com/libp2p/go-libp2p (v0.0.32 -> v0.8.2):
- fix: keep observed addrs alive as long as their associated connections are alive (libp2p/go-libp2p#899)
- fix: refactor logic for identifying connections (libp2p/go-libp2p#898)
- fix: reduce log level of a noisy log line (libp2p/go-libp2p#889)
- [discovery] missing defer .Stop on ticker (libp2p/go-libp2p#888)
- deprioritize unspecified addresses in mock connections (libp2p/go-libp2p#887)
- feat: support TLS by default (libp2p/go-libp2p#884)
- Expose option for setting autonat throttling (libp2p/go-libp2p#882)
- Clearer naming of nat override options (libp2p/go-libp2p#878)
- fix: set the private key when constructing the autonat service (libp2p/go-libp2p#853)
- Signal address change (libp2p/go-libp2p#851)
- fix multiple issues in the mock tests (libp2p/go-libp2p#850)
- fix: minimal autonat dialer (libp2p/go-libp2p#849)
- Trigger Autorelay on NAT events (libp2p/go-libp2p#807)
- Local addr updated event (libp2p/go-libp2p#847)
- feat(mock): reliable notifications (libp2p/go-libp2p#836)
- doc(options): fix autorelay documentation (libp2p/go-libp2p#835)
- change PrivateNetwork to accept a PSK, update constructor magic (libp2p/go-libp2p#796)
- docs: Update the README (libp2p/go-libp2p#827)
- fix: remove an unnecessary goroutine (libp2p/go-libp2p#820)
- EnableAutoRelay should work without ContentRouting if there are StaticRelays defined (libp2p/go-libp2p#810)
- Use of mux.ErrReset in mocknet (libp2p/go-libp2p#815)
- docs: uniform comment sentences (libp2p/go-libp2p#826)
- enable non-public address port mapping announcement (libp2p/go-libp2p#771)
- fix: demote stream deadline errors to debug logs (libp2p/go-libp2p#768)
- small grammar fixes and updates to readme (libp2p/go-libp2p#743)
- Identify: Make activation threshold configurable (libp2p/go-libp2p#740)
- better user-agent handling (libp2p/go-libp2p#702)
- Update deps, mocknet tests (libp2p/go-libp2p#697)
- autorelay: ensure candidate relays can hop (libp2p/go-libp2p#696)
- We don't use
cs
here, drop it. (libp2p/go-libp2p#682) - Fix racy and failing test cases. (libp2p/go-libp2p#674)
- fix: use the goprocess for closing (libp2p/go-libp2p#669)
- update package table after -core refactor (libp2p/go-libp2p#661)
- basic_host: ensure we close correctly when the context is canceled (libp2p/go-libp2p#656)
- Add go-libp2p-gostream and go-libp2p-http to readme (libp2p/go-libp2p#655)
- github.com/libp2p/go-libp2p-autonat (v0.0.6 -> v0.2.2):
- Run Autonat Service while in unknown connectivity mode (libp2p/go-libp2p-autonat#75)
- Add option to force nat into a specified reachability state (libp2p/go-libp2p-autonat#55)
- Merge Autonat-svc (libp2p/go-libp2p-autonat#54)
- change autonat interface to use functional options (libp2p/go-libp2p-autonat#53)
- Limiting autonat service responses/startup (libp2p/go-libp2p-autonat#45)
- Emit events when NAT status changes (libp2p/go-libp2p-autonat#37)
- Take eventbus events to completion (libp2p/go-libp2p-autonat#38)
- Add missing syntax to autonat.proto (libp2p/go-libp2p-autonat#26)
- full close the autonat stream (libp2p/go-libp2p-autonat#20)
- reduce dialback timeout to 15s (libp2p/go-libp2p-autonat#17)
- Extract service implementation from go-libp2p-autonat (libp2p/go-libp2p-autonat#1)
- github.com/libp2p/go-libp2p-circuit (v0.0.9 -> v0.2.2):
- fix: don't abort accept when accepting a single connection fails (libp2p/go-libp2p-circuit#107)
- Revert "feat: functional options" (libp2p/go-libp2p-circuit#103)
- feat: remove relay discovery and unspecified relay dialing (libp2p/go-libp2p-circuit#101)
- move protocol definitions to go-multiaddr (libp2p/go-libp2p-circuit#81)
- return the full address from conn.RemoteMultiaddr (libp2p/go-libp2p-circuit#80)
- expose CanHop as a module function (libp2p/go-libp2p-circuit#79)
- github.com/libp2p/go-libp2p-discovery (v0.0.5 -> v0.4.0):
- Fix race with reuse of randomness (libp2p/go-libp2p-discovery#54)
- Add Backoff Cache Discovery (libp2p/go-libp2p-discovery#26)
- Discovery based Content Routing (libp2p/go-libp2p-discovery#27)
- github.com/libp2p/go-libp2p-kad-dht (v0.0.15 -> v0.7.10):
- fix: avoid blocking when bootstrapping (libp2p/go-libp2p-kad-dht#610)
- fix: re-validate peers whenever their state changes (libp2p/go-libp2p-kad-dht#607)
- intercept failing query events when finding providers (libp2p/go-libp2p-kad-dht#603)
- feat: set provider manager options (libp2p/go-libp2p-kad-dht#593)
- fix: optimize debug logging a bit (libp2p/go-libp2p-kad-dht#598)
- stricter definition of public for DHT (libp2p/go-libp2p-kad-dht#596)
- feat: reduce allocations (libp2p/go-libp2p-kad-dht#588)
- query.go: Remove shuffle comment (libp2p/go-libp2p-kad-dht#586)
- fix: optimize isRelay (libp2p/go-libp2p-kad-dht#585)
- feat: expose WANActive (libp2p/go-libp2p-kad-dht#580)
- fix: improve error handling in dual dht (libp2p/go-libp2p-kad-dht#582)
- fix: deduplicate addresses (libp2p/go-libp2p-kad-dht#581)
- Fix bug in periodic peer pinging (libp2p/go-libp2p-kad-dht#579)
- Dual DHT scaffold (libp2p/go-libp2p-kad-dht#570)
- fix: linting fixes (libp2p/go-libp2p-kad-dht#578)
- fix: remove local provider check (libp2p/go-libp2p-kad-dht#577)
- fix: use the routing table filter (libp2p/go-libp2p-kad-dht#576)
- fix: handle empty keys (libp2p/go-libp2p-kad-dht#562)
- Set record handlers for the default protocol prefix (libp2p/go-libp2p-kad-dht#560)
- fix incorrect error handling during provider record lookups (libp2p/go-libp2p-kad-dht#554)
- Proposed DHTv2 Changes (libp2p/go-libp2p-kad-dht#473)
- fix: obey the context when sending messages to peers (libp2p/go-libp2p-kad-dht#462)
- Close context correctly (libp2p/go-libp2p-kad-dht#477)
- add benchmark for handleFindPeer (libp2p/go-libp2p-kad-dht#475)
- give views names again (libp2p/go-libp2p-kad-dht#474)
- metrics: record message/request event even in case of error (libp2p/go-libp2p-kad-dht#464)
- fix(dialqueue): fix a timer leak (libp2p/go-libp2p-kad-dht#466)
- fix(query): cancel the context when the query finishes (libp2p/go-libp2p-kad-dht#467)
- fix(providers): upgrade warnings to errors (libp2p/go-libp2p-kad-dht#455)
- Make the Routing Table's latency tolerance configurable. (libp2p/go-libp2p-kad-dht#454)
- Adjust cluster level while encoding as well (libp2p/go-libp2p-kad-dht#445)
- Remove incorrect doc (libp2p/go-libp2p-kad-dht#443)
- feat: reduce stream idle timeout to 1m (libp2p/go-libp2p-kad-dht#441)
- Provider records use multihashes instead of CIDs (libp2p/go-libp2p-kad-dht#422)
- Fix flaky TestEmptyTableTest (libp2p/go-libp2p-kad-dht#433)
- Refresh cpl's in dht (libp2p/go-libp2p-kad-dht#428)
- fix: always send the result channel when triggering a refresh (libp2p/go-libp2p-kad-dht#425)
- feat: allow disabling value and provider storage/messages (libp2p/go-libp2p-kad-dht#400)
- fix: prioritize closer peers (libp2p/go-libp2p-kad-dht#424)
- fix: try to re-add existing peers when the routing table is empty (libp2p/go-libp2p-kad-dht#420)
- feat: refresh and wait (libp2p/go-libp2p-kad-dht#418)
- Make max record age configurable (libp2p/go-libp2p-kad-dht#410)
- fix and simplify some bootstrapping logic (libp2p/go-libp2p-kad-dht#405)
- feat(bootstrap): take autobootstrap to completion (libp2p/go-libp2p-kad-dht#403)
- Feature/correct bootstrapping (libp2p/go-libp2p-kad-dht#384)
- Update tests to use Ed25519 when acceptable. (libp2p/go-libp2p-kad-dht#380)
- Add timeout (libp2p/go-libp2p-kad-dht#351)
- Feat/message size (libp2p/go-libp2p-kad-dht#353)
- reduce background goroutines (libp2p/go-libp2p-kad-dht#340)
- github.com/libp2p/go-libp2p-kbucket (v0.1.1 -> v0.4.1):
- fix: use time.Duration for time, not floats (libp2p/go-libp2p-kbucket#76)
- Add LastUsefulAt and LastSuccessfulQueryAt for each peer (libp2p/go-libp2p-kbucket#75)
- fix: correctly track CPLs of never refreshed buckets (libp2p/go-libp2p-kbucket#71)
- Get Peer Infos (libp2p/go-libp2p-kbucket#69)
- fix: use accurate bucket logic (libp2p/go-libp2p-kbucket#64)
- Replace dead peers & increase replacement cache size (libp2p/go-libp2p-kbucket#59)
- Kbucket refactoring for Content Routing (libp2p/go-libp2p-kbucket#54)
- Disassociate RT membership from connectivity (libp2p/go-libp2p-kbucket#50)
- Unit Test for the util.Closer function (libp2p/go-libp2p-kbucket#48)
- Refresh Cpl's, not buckets (libp2p/go-libp2p-kbucket#46)
- Fix NearestPeers Doc (libp2p/go-libp2p-kbucket#45)
- fix: when the target bucket is empty or low, pull from all other buckets (libp2p/go-libp2p-kbucket#43)
- readme: replace IPFS contrib links with libp2p (libp2p/go-libp2p-kbucket#34)
- k-bucket support for peoper kad bootstrapping (libp2p/go-libp2p-kbucket#38)
- Fix bootstrapping id generation logic (libp2p/go-libp2p-kbucket#1)
- fix: avoid hashing under a lock (libp2p/go-libp2p-kbucket#31)
- dep: use a faster sha256 library (libp2p/go-libp2p-kbucket#32)
- Remove a lot of allocations, and fix some ambiguous naming (libp2p/go-libp2p-kbucket#30)
- github.com/libp2p/go-libp2p-mplex (v0.1.1 -> v0.2.3):
- Respect mux.ErrReset (libp2p/go-libp2p-mplex#9)
- github.com/libp2p/go-libp2p-nat (v0.0.4 -> v0.0.6):
- typo and changed deprecated method (libp2p/go-libp2p-nat#26)
- nit: fix log format (libp2p/go-libp2p-nat#19)
- fix: remove notifier (libp2p/go-libp2p-nat#18)
- github.com/libp2p/go-libp2p-peerstore (v0.0.6 -> v0.2.3):
- fix: handle nil peer IDs (libp2p/go-libp2p-peerstore#88)
- Fix memory store signed peer record bug (libp2p/go-libp2p-peerstore#133)
- fix: make closing the in-memory peerstore actually close it (libp2p/go-libp2p-peerstore#131)
- Correct path to peer.AddrInfo in deprecation (libp2p/go-libp2p-peerstore#124)
- fix multiple TTL bugs (libp2p/go-libp2p-peerstore#92)
- reduce allocations when adding addrs (libp2p/go-libp2p-peerstore#86)
- test: add metadata test (libp2p/go-libp2p-peerstore#82)
- set map in constructor (libp2p/go-libp2p-peerstore#81)
- improve interning (libp2p/go-libp2p-peerstore#79)
- github.com/libp2p/go-libp2p-pnet (v0.0.1 -> v0.2.0):
- remove key serialization, construct conn from ipnet.PSK (libp2p/go-libp2p-pnet#32)
- remove dependency on go-multicodec (libp2p/go-libp2p-pnet#26)
- github.com/libp2p/go-libp2p-pubsub (v0.0.3 -> v0.2.7):
- Replace LRU cache blacklist implementation with a time cache (libp2p/go-libp2p-pubsub#258)
- Configurable size of validate queue (libp2p/go-libp2p-pubsub#255)
- Rename VaidatorData to ValidatorData (libp2p/go-libp2p-pubsub#251)
- Configurable message id function (libp2p/go-libp2p-pubsub#248)
- tracing support (libp2p/go-libp2p-pubsub#227)
- add ValidatorData field to Message (libp2p/go-libp2p-pubsub#231)
- Configurable outbound peer queue sizes (libp2p/go-libp2p-pubsub#230)
- Topic handler bug fixes (libp2p/go-libp2p-pubsub#225)
- Add Discovery (libp2p/go-libp2p-pubsub#184)
- Expose the peer that propagates a message to the recipient (libp2p/go-libp2p-pubsub#218)
- gossip methods: renames and predicate adjustment (libp2p/go-libp2p-pubsub#204)
- godocs: clarify config params of MessageCache. (libp2p/go-libp2p-pubsub#205)
- minor bug fix: on join, source peers from gossip[topic] if insufficient peers in fanout[topic] (libp2p/go-libp2p-pubsub#196)
- add PubSub's context to Subscription (libp2p/go-libp2p-pubsub#201)
- Add the ability to handle newly subscribed peers (libp2p/go-libp2p-pubsub#190)
- Fix gossipsub race condition for heartbeat (libp2p/go-libp2p-pubsub#188)
- github.com/libp2p/go-libp2p-pubsub-router (v0.0.3 -> v0.2.1):
- fix: ignore bad peers when fetching the latest value (libp2p/go-libp2p-pubsub-router#54)
- fix: rename MinimalPubsub -> Pubsub interface and improve docs (libp2p/go-libp2p-pubsub-router#52)
- Use Minimal PubSub Interface Instead Of Full PubSub Router (libp2p/go-libp2p-pubsub-router#51)
- Remove bootstrapping code (libp2p/go-libp2p-pubsub-router#37)
- readme: replace IPFS contrib links with libp2p (libp2p/go-libp2p-pubsub-router#34)
- Add Persistence Layer on top of PubSub (libp2p/go-libp2p-pubsub-router#33)
- Subscribe to PubSub topic before Publishing (libp2p/go-libp2p-pubsub-router#30)
- PutValue not blocked by Provide during bootstrapping (libp2p/go-libp2p-pubsub-router#29)
- github.com/libp2p/go-libp2p-quic-transport (v0.0.3 -> v0.3.5):
- add command line client and server (libp2p/go-libp2p-quic-transport#139)
- write qlogs to a temporary file first, then rename them when done (libp2p/go-libp2p-quic-transport#136)
- export qlogs when the QLOGDIR env variable is set (libp2p/go-libp2p-quic-transport#129)
- fix: avoid dialing/listening on dns addresses (libp2p/go-libp2p-quic-transport#131)
- use a stateless reset key derived from the private key (libp2p/go-libp2p-quic-transport#122)
- add support for multiaddr filtering (libp2p/go-libp2p-quic-transport#125)
- use the resolved address for RemoteMultiaddr() (libp2p/go-libp2p-quic-transport#127)
- accept a PSK in the transport constructor (and reject it) (libp2p/go-libp2p-quic-transport#111)
- update quic-go to v0.15.0 (libp2p/go-libp2p-quic-transport#114)
- increase the stream and connection receive windows (libp2p/go-libp2p-quic-transport#108)
- fix key comparisons in tests (libp2p/go-libp2p-quic-transport#110)
- make reuse work on Windows (libp2p/go-libp2p-quic-transport#83)
- add a LICENSE (libp2p/go-libp2p-quic-transport#78)
- Use specific netlink families for android (libp2p/go-libp2p-quic-transport#75)
- implement a garbage-collector for unused reuse connections (libp2p/go-libp2p-quic-transport#73)
- implement connection reuse (libp2p/go-libp2p-quic-transport#63)
- update the README (libp2p/go-libp2p-quic-transport#69)
- use the handshake logic from go-libp2p-tls (libp2p/go-libp2p-quic-transport#67)
- update quic-go to v0.12.0 (supporting QUIC draft-22) (libp2p/go-libp2p-quic-transport#68)
- when ListenUDP fails once, try again next time (libp2p/go-libp2p-quic-transport#59)
- github.com/libp2p/go-libp2p-record (v0.0.1 -> v0.1.2):
- readme: replace IPFS contrib links with libp2p (libp2p/go-libp2p-record#25)
- Use peer ID utilities to go from pubkey to peer ID (libp2p/go-libp2p-record#26)
- github.com/libp2p/go-libp2p-routing-helpers (v0.0.2 -> v0.2.2):
- doc: document all types (libp2p/go-libp2p-routing-helpers#40)
- fix: fetch all providers when count is 0 (libp2p/go-libp2p-routing-helpers#39)
- feat: implement io.Closer (libp2p/go-libp2p-routing-helpers#37)
- readme: replace IPFS contrib links with libp2p (libp2p/go-libp2p-routing-helpers#21)
- github.com/libp2p/go-libp2p-secio (v0.0.3 -> v0.2.2):
- feat: remove sha1 hmac (libp2p/go-libp2p-secio#64)
- readme: add context and links (libp2p/go-libp2p-secio#55)
- Update to latest go-libp2p-core, update tests (libp2p/go-libp2p-secio#54)
- Remove support for blowfish (libp2p/go-libp2p-secio#52)
- fix: wait for handshake to complete before returning (libp2p/go-libp2p-secio#50)
- avoid holding the message writer longer than necessary (libp2p/go-libp2p-secio#49)
- github.com/libp2p/go-libp2p-swarm (v0.0.7 -> v0.2.3):
- don't expire backoffs until 2x backoff period (libp2p/go-libp2p-swarm#193)
- fix: slightly simplify backoff logic (libp2p/go-libp2p-swarm#192)
- change backoffs to per-address (libp2p/go-libp2p-swarm#191)
- fix: set teardown after storing the context (libp2p/go-libp2p-swarm#190)
- feat: handle no addresses (libp2p/go-libp2p-swarm#185)
- fix: make sure to include peer in dial error (libp2p/go-libp2p-swarm#180)
- Don't drop connections when simultaneous dialing occurs (libp2p/go-libp2p-swarm#174)
- fix: fire a listen close event when closing the listener (libp2p/go-libp2p-swarm#164)
- Link to godocs for Host instead of deprecated repo (libp2p/go-libp2p-swarm#137)
- improve dial errors (libp2p/go-libp2p-swarm#145)
- Minor Docstring correction (libp2p/go-libp2p-swarm#143)
- test: close peerstore when closing the test swarm (libp2p/go-libp2p-swarm#139)
- fix listen addrs race (libp2p/go-libp2p-swarm#136)
- logging: make the swarm less noisy (libp2p/go-libp2p-swarm#131)
- feat: cache interface addresses for 1 minute (libp2p/go-libp2p-swarm#129)
- github.com/libp2p/go-libp2p-tls (v0.0.2 -> v0.1.3):
- Readme: link to the libp2p-core docs (libp2p/go-libp2p-tls#36)
- expose the function to derive the peer's public key from the cert chain (libp2p/go-libp2p-tls#33)
- set an ALPN value in the tls.Config (libp2p/go-libp2p-tls#32)
- github.com/libp2p/go-libp2p-transport-upgrader (v0.0.4 -> v0.2.0):
- use the ipnet.PSK instead of the ipnet.Protector for private networks (libp2p/go-libp2p-transport-upgrader#45)
- readme: add context & fix example code (libp2p/go-libp2p-transport-upgrader#26)
- fix an incorrect error message (libp2p/go-libp2p-transport-upgrader#27)
- Consolidate abstractions and core types into go-libp2p-core (#28) (libp2p/go-libp2p-transport-upgrader#22)
- github.com/libp2p/go-libp2p-yamux (v0.1.3 -> v0.2.7):
- Respect mux.ErrReset (libp2p/go-libp2p-yamux#10)
- github.com/libp2p/go-maddr-filter (v0.0.4 -> v0.0.5):
- fix: check for blocked addrs without allocating (libp2p/go-maddr-filter#14)
- github.com/libp2p/go-mplex (v0.0.4 -> v0.1.2):
- remove deprecated log.Warning(f) (libp2p/go-mplex#65)
- Remove dependency on go-libp2p-core and introduce new errors. (libp2p/go-mplex#72)
- Bump lodash from 4.17.5 to 4.17.15 in /interop/js (libp2p/go-mplex#66)
- add test for deadlines (libp2p/go-mplex#60)
- github.com/libp2p/go-msgio (v0.0.2 -> v0.0.4):
- make the maximum message size configurable (libp2p/go-msgio#15)
- combine writes and avoid a few more allocations (libp2p/go-msgio#14)
- avoid allocating unless we need to (libp2p/go-msgio#13)
- github.com/libp2p/go-nat (v0.0.3 -> v0.0.5):
- feat: switch to go-netroute (libp2p/go-nat#19)
- fix: really obey the context (libp2p/go-nat#13)
- don't mask context (libp2p/go-nat#10)
- github.com/libp2p/go-reuseport-transport (v0.0.2 -> v0.0.3):
- fix: less confusing log message (libp2p/go-reuseport-transport#22)
- readme: replace IPFS contrib links with libp2p (libp2p/go-reuseport-transport#16)
- replace gx instructions with note about gomod (libp2p/go-reuseport-transport#15)
- github.com/libp2p/go-tcp-transport (v0.0.4 -> v0.2.0):
- fix: don't allow dialing DNS addresses (libp2p/go-tcp-transport#61)
- Use new constructor for insecure transport in tests (libp2p/go-tcp-transport#42)
- readme: add install, usage & addressing info (libp2p/go-tcp-transport#41)
- github.com/libp2p/go-ws-transport (v0.0.6 -> v0.3.1):
- fix: add read/write locks (libp2p/go-ws-transport#85)
- fix: restrict dials to IP + TCP (libp2p/go-ws-transport#84)
- Revert "add mutex for write/close" (libp2p/go-ws-transport#73)
- feat: faster copy in wasm (libp2p/go-ws-transport#68)
- Add WebAssembly support and the ability to Dial from browsers (libp2p/go-ws-transport#55)
- fix: close gracefully (libp2p/go-ws-transport#54)
- move multiaddr protocol definitions to go-multiaddr (libp2p/go-ws-transport#52)
- Add install, usage & addressing info to README (libp2p/go-ws-transport#49)
- github.com/libp2p/go-yamux (v1.2.3 -> v1.3.5):
- fix: synchronize when resetting the keepalive timer (libp2p/go-yamux#21)
- fix: don't keepalive when the connection is busy (libp2p/go-yamux#16)
- Rename errors (libp2p/go-yamux#14)
- fix(stream): set writeDeadline when cleanup and forceClose (libp2p/go-yamux#12)
- fixes a stream deadlock multiple ways (libp2p/go-yamux#8)
Contributor | Commits | Lines ± | Files Changed |
---|---|---|---|
Steven Allen | 858 | +27833/-15919 | 1906 |
Dirk McCormick | 134 | +18058/-8347 | 282 |
Aarsh Shah | 83 | +13458/-11883 | 241 |
Adin Schmahmann | 144 | +11878/-6236 | 397 |
Raúl Kripalani | 94 | +6894/-10214 | 598 |
vyzo | 60 | +8923/-1160 | 102 |
Will Scott | 79 | +3776/-1467 | 175 |
Michael Muré | 29 | +1734/-3290 | 104 |
dependabot[bot] | 365 | +3419/-361 | 728 |
Hector Sanjuan | 64 | +2053/-1321 | 132 |
Marten Seemann | 52 | +1922/-1268 | 147 |
Michael Avila | 29 | +828/-1733 | 70 |
Peter Rabbitson | 53 | +1073/-1197 | 100 |
Yusef Napora | 36 | +1610/-378 | 57 |
hannahhoward | 16 | +1342/-559 | 61 |
Łukasz Magiera | 9 | +277/-1623 | 41 |
Marcin Rataj | 9 | +1686/-99 | 32 |
Will | 7 | +936/-709 | 34 |
Alex Browne | 27 | +1019/-503 | 46 |
David Dias | 30 | +987/-431 | 43 |
Jakub Sztandera | 43 | +912/-436 | 77 |
Cole Brown | 21 | +646/-398 | 57 |
Oli Evans | 29 | +488/-466 | 43 |
Cornelius Toole | 3 | +827/-60 | 20 |
Hlib | 15 | +331/-185 | 28 |
Adrian Lanzafame | 9 | +123/-334 | 18 |
Petar Maymounkov | 1 | +385/-48 | 5 |
Alan Shaw | 18 | +262/-146 | 35 |
lnykww | 1 | +303/-52 | 6 |
Hannah Howard | 1 | +198/-27 | 3 |
Dominic Della Valle | 9 | +163/-52 | 14 |
Adam Uhlir | 1 | +211/-2 | 3 |
Dimitris Apostolou | 1 | +105/-105 | 64 |
Frrist | 1 | +186/-18 | 5 |
Henrique Dias | 22 | +119/-28 | 22 |
Gergely Tabiczky | 5 | +74/-60 | 7 |
Matt Joiner | 2 | +63/-62 | 4 |
@RubenKelevra | 12 | +46/-55 | 12 |
whyrusleeping | 6 | +87/-11 | 7 |
deepakgarg | 4 | +42/-43 | 4 |
protolambda | 2 | +49/-17 | 9 |
hucg | 2 | +47/-11 | 3 |
Arber Avdullahu | 3 | +31/-27 | 3 |
Sameer Puri | 1 | +46/-4 | 2 |
Hucg | 3 | +17/-33 | 3 |
Guilhem Fanton | 2 | +29/-10 | 7 |
Christian Muehlhaeuser | 6 | +20/-19 | 14 |
Djalil Dreamski | 3 | +27/-9 | 3 |
Caian | 2 | +36/-0 | 2 |
Topper Bowers | 2 | +31/-4 | 4 |
flowed | 1 | +16/-16 | 11 |
Vibhav Pant | 4 | +21/-10 | 5 |
frrist | 1 | +26/-4 | 1 |
Hlib Kanunnikov | 1 | +25/-3 | 1 |
george xie | 3 | +12/-15 | 11 |
optman | 1 | +13/-9 | 1 |
Roman Proskuryakov | 1 | +11/-11 | 2 |
Vasco Santos | 1 | +10/-10 | 5 |
Pretty Please Mark Darkly | 2 | +16/-2 | 2 |
Piotr Dyraga | 2 | +15/-2 | 2 |
Andrew Nesbitt | 1 | +5/-11 | 5 |
postables | 4 | +19/-8 | 4 |
Jim McDonald | 2 | +13/-1 | 2 |
PoorPockets McNewHold | 1 | +12/-0 | 1 |
Henri S | 1 | +6/-6 | 1 |
Igor Velkov | 1 | +8/-3 | 1 |
swedneck | 4 | +7/-3 | 4 |
Devin | 2 | +5/-5 | 4 |
iulianpascalau | 1 | +5/-3 | 2 |
MollyM | 3 | +7/-1 | 3 |
Jorropo | 2 | +5/-3 | 3 |
lukesolo | 1 | +6/-1 | 2 |
Wes Morgan | 1 | +3/-3 | 1 |
Kishan Mohanbhai Sagathiya | 1 | +3/-3 | 2 |
songjiayang | 1 | +4/-0 | 1 |
Terry Ding | 1 | +2/-2 | 1 |
Preston Van Loon | 2 | +3/-1 | 2 |
Jim Pick | 2 | +2/-2 | 2 |
Jakub Kaczmarzyk | 1 | +2/-2 | 1 |
Simon Menke | 2 | +2/-1 | 2 |
Jessica Schilling | 2 | +1/-2 | 2 |
Edgar Aroutiounian | 1 | +2/-1 | 1 |
hikerpig | 1 | +1/-1 | 1 |
ZenGround0 | 1 | +1/-1 | 1 |
Thomas Preindl | 1 | +1/-1 | 1 |
Sander Pick | 1 | +1/-1 | 1 |
Ronsor | 1 | +1/-1 | 1 |
Roman Khafizianov | 1 | +1/-1 | 1 |
Rod Vagg | 1 | +1/-1 | 1 |
Max Inden | 1 | +1/-1 | 1 |
Leo Arias | 1 | +1/-1 | 1 |
Kuro1 | 1 | +1/-1 | 1 |
Kirill Goncharov | 1 | +1/-1 | 1 |
John B Nelson | 1 | +1/-1 | 1 |
George Masgras | 1 | +1/-1 | 1 |
Aliabbas Merchant | 1 | +1/-1 | 1 |
Lorenzo Setale | 1 | +1/-0 | 1 |
Boris Mann | 1 | +1/-0 | 1 |