From 50f9401ac1f47b1aa84c9e7d32c86b07513cd5ef Mon Sep 17 00:00:00 2001 From: Steven Allen Date: Sun, 22 Jul 2018 22:39:07 -0700 Subject: [PATCH 1/2] update release notes and version for 0.4.17-rc1 License: MIT Signed-off-by: Steven Allen --- CHANGELOG.md | 61 +++++++++++++++++++++++++++++++++++++++++- repo/config/version.go | 2 +- 2 files changed, 61 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9064e5b5344..e2a78f61610 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,65 @@ # go-ipfs changelog -## 0.4.16 +## 0.4.17-rc1 2018-07-20 + +Ipfs 0.4.17 is a quick release to fix two important bugs: + +1. A major performance regression in bitswap (mostly affecting go-ipfs -> + js-ipfs transfers). +2. A bug resolving files in sharded directories with the gateway. + +However, while motivated by those fixes, it contains a few other goodies that +will excite some users. + +The headline feature in this release is [urlstore][] support. Urlstore is a +generalization of the filestore backend that can fetch file blocks from remote +URLs on-demand instead of storing them in the local datastore. + +Additionally, we've added support for extracting inline blocks from CIDs (blocks +inlined into CIDs using the identity hash function). However, go-ipfs won't yet +*create* such CIDs so you're unlikely to see any in the wild. + +[urlstore]: https://github.com/ipfs/go-ipfs/blob/master/docs/experimental-features.md#ipfs-urlstore + +Features: + +* URLStore ([ipfs/go-ipfs#4896](https://github.com/ipfs/go-ipfs/pull/4896)) +* Add trickle-dag support to the urlstore ([ipfs/go-ipfs#5245](https://github.com/ipfs/go-ipfs/pull/5245)). +* Allow specifying how the data field in the `object get` is encoded ([ipfs/go-ipfs#5139](https://github.com/ipfs/go-ipfs/pull/5139)) +* Add a `-U` flag to `files ls` to disable sorting ([ipfs/go-ipfs#5219](https://github.com/ipfs/go-ipfs/pull/5219)) +* Add an efficient `--size-only` flag to the `repo stat` ([ipfs/go-ipfs#5010](https://github.com/ipfs/go-ipfs/pull/5010)) +* Inline blocks in CIDs ([ipfs/go-ipfs#5117](https://github.com/ipfs/go-ipfs/pull/5117)) + +Changes/Fixes: + +* Make `ipfs files ls -l` correctly report the hash and size of files ([ipfs/go-ipfs#5045](https://github.com/ipfs/go-ipfs/pull/5045)) +* Fix sorting of `files ls` ([ipfs/go-ipfs#5219](https://github.com/ipfs/go-ipfs/pull/5219)) +* Improve prefetching in `ipfs cat` and related commands ([ipfs/go-ipfs#5162](https://github.com/ipfs/go-ipfs/pull/5162)) +* Better error message when `ipfs cp` fails ([ipfs/go-ipfs#5218](https://github.com/ipfs/go-ipfs/pull/5218)) +* Don't wait for the peer to close it's end of a bitswap stream before considering the block "sent" ([ipfs/go-ipfs#5258](https://github.com/ipfs/go-ipfs/pull/5258)) +* Fix resolving links in sharded directories via the gateway ([ipfs/go-ipfs#5271](https://github.com/ipfs/go-ipfs/pull/5271)) +* Fix building when there's a space in the current directory ([ipfs/go-ipfs#5261](https://github.com/ipfs/go-ipfs/pull/5261)) + +Documentation: + +* Improve documentation about the bloomfilter config options ([ipfs/go-ipfs#4924](https://github.com/ipfs/go-ipfs/pull/4924)) + +General refactorings and internal bug fixes: + +* Remove the `Offset()` method from the DAGReader ([ipfs/go-ipfs#5190](https://github.com/ipfs/go-ipfs/pull/5190)) +* Fix TestLargeWriteChunks seek behavior ([ipfs/go-ipfs#5276](https://github.com/ipfs/go-ipfs/pull/5276)) +* Add a build tag to disable dynamic plugins ([ipfs/go-ipfs#5274](https://github.com/ipfs/go-ipfs/pull/5274)) +* Use FSNode instead of the Protobuf structure in PBDagReader ([ipfs/go-ipfs#5189](https://github.com/ipfs/go-ipfs/pull/5189)) +* Remove support for non-directory MFS roots ([ipfs/go-ipfs#5170](https://github.com/ipfs/go-ipfs/pull/5170)) +* Remove `UnixfsNode` from the balanced builder ([ipfs/go-ipfs#5118](https://github.com/ipfs/go-ipfs/pull/5118)) +* Fix truncating files (internal) when already at the correct size ([ipfs/go-ipfs#5253](https://github.com/ipfs/go-ipfs/pull/5253)) +* Fix `dagTruncate` (internal) to preserve the node type ([ipfs/go-ipfs#5216](https://github.com/ipfs/go-ipfs/pull/5216)) +* Add an internal interface for unixfs directories ([ipfs/go-ipfs#5160](https://github.com/ipfs/go-ipfs/pull/5160)) +* Refactor the CoreAPI path types and interfaces ([ipfs/go-ipfs#4672](https://github.com/ipfs/go-ipfs/pull/4672)) +* Refactor `precalcNextBuf` in the dag reader ([ipfs/go-ipfs#5237](https://github.com/ipfs/go-ipfs/pull/5237)) +* Update a bunch of dependencies that haven't been updated for a while ([ipfs/go-ipfs#5268](https://github.com/ipfs/go-ipfs/pull/5268)) + +## 0.4.16 2018-07-13 Ipfs 0.4.16 is a fairly small release in terms of changes to the ipfs codebase, but it contains a huge amount of changes and improvements from the libraries we diff --git a/repo/config/version.go b/repo/config/version.go index 1bb42353520..153ea331439 100644 --- a/repo/config/version.go +++ b/repo/config/version.go @@ -4,6 +4,6 @@ package config var CurrentCommit string // CurrentVersionNumber is the current application's version literal -const CurrentVersionNumber = "0.4.17-dev" +const CurrentVersionNumber = "0.4.17-rc1" const ApiVersion = "/go-ipfs/" + CurrentVersionNumber + "/" From 3a085b7342a58404867067789688cc6438ca0fe3 Mon Sep 17 00:00:00 2001 From: Steven Allen Date: Mon, 23 Jul 2018 19:10:06 -0700 Subject: [PATCH 2/2] release 0.4.17-rc1 License: MIT Signed-off-by: Steven Allen --- .gx/lastpubver | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gx/lastpubver b/.gx/lastpubver index 5286b46af89..b871ac5a261 100644 --- a/.gx/lastpubver +++ b/.gx/lastpubver @@ -1 +1 @@ -0.4.16: QmTRP6dcuYwcGDvAH8HvJtoupPrhZDQ8AoxMEn9gMzbgMy +0.4.17-rc1: Qma5pGQ9ugGoeAbND8RKPohYfZDyaivSCfRQraKkW8Gu4Y diff --git a/package.json b/package.json index d7294a92a40..9b29239eace 100644 --- a/package.json +++ b/package.json @@ -551,6 +551,6 @@ "language": "go", "license": "MIT", "name": "go-ipfs", - "version": "0.4.17-dev" + "version": "0.4.17-rc1" }