Skip to content

Releases: nftstorage/ipfs-cluster

v3.1.1

22 Jun 16:34
Compare
Choose a tag to compare

v3.0.1

26 May 11:38
Compare
Choose a tag to compare
  • Disables output streaming when adding directories to fix a problem with IPFS Clusters hosted behind an nginx reverse proxy. Currently if any response is received before the request has finished uploading then nginx doesn't know how to deal with that and terminates the connection. What this means is that if you upload a small file then a big file the request will fail whereas a big file followed by a small file might succeed.
    • Note: the code buffers the output so there is no need to stream or have the complexity of a newline delimited parser to deal with it.

v3.0.0

18 May 14:25
Compare
Choose a tag to compare
  • Establishes hash consistency between files added to IPFS and files added to Cluster
    • A file added to IPFS like ipfs add file --cid-version=1 should now have the same hash as a file added to cluster like cluster.add(file).
    • See ipfs-cluster/ipfs-cluster#1358 for further information.

v2.4.0

12 May 08:38
Compare
Choose a tag to compare
  • Adds metricNames method
  • Streams response from addDirectory to reduce memory footprint

v2.3.0

05 May 09:27
Compare
Choose a tag to compare
  • Adds car file support to cluster.add
    • Simply pass a File or Blob with their MIME type set to application/car

Note: You must be running IPFS Cluser v0.13.3-rc1 or greater.