From d6ed089c4b7f5544dbacf46dc49830b808e40132 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Thu, 11 Jun 2015 20:51:32 -0700 Subject: [PATCH 1/3] CHANGELOG.md: Start tracking user-visible changes for 0.3.6 Or whatever the next release ends up being. It's easier to keep this up to date as we go than to try and remember what the important changes were when we cut the next release. License: MIT Signed-off-by: W. Trevor King --- CHANGELOG.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8fc36e08a1d..2ec7eebc03f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # go-ipfs changelog +### 0.3.6 - unreleased + +We don't know what the main changes will be yet. + +#### Stability and performance + +* prevent wantmanager from leaking goroutines (and + memory). @whyrusleeping, #1356 + ### 0.3.5 - 2015-06-11 This patch improves overall stability and performance From 6d41769a66a5c85580468c73b9063cdb8cb82cd8 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Sat, 20 Jun 2015 11:00:11 -0700 Subject: [PATCH 2/3] CHANGELOG.md: Update with features through 3a1c8d7 (2015-06-19) And bump the expected version number to 0.4.0, because the IPFS-obect pins need a one-way migration. License: MIT Signed-off-by: W. Trevor King --- CHANGELOG.md | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2ec7eebc03f..1e7d528a1ee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,13 +1,32 @@ # go-ipfs changelog -### 0.3.6 - unreleased +### 0.4.0 - unreleased We don't know what the main changes will be yet. +#### User interface changes + +* `ipfs object patch ...` now bubbles changes up the DAG. @whyrusleeping, #1404 +* trickle-DAG option (`ipfs add -t ...`) now acts as + advertized. @dylanPowers, #1379 +* trailing tabs removed from `ipfs ls ...` output. @wking, #1346 +* event logs are now HTTP-only. @whyrusleeping, #1382 +* `ipfs name publish ` + works. @wking, #1398 +* daemon shuts down cleanly on ctrl-c. @whyrusleeping, #1405 +* better docs. @dylanPowers, #1400, #1402 + #### Stability and performance +* better Linux FUSE-mount errors for missing mount points, @jbenet, #1391 * prevent wantmanager from leaking goroutines (and memory). @whyrusleeping, #1356 +* store pins in IPFS objects. @tv42, #1381 +* better context handling. @whyrusleeping, #1367 +* sharness improvements. @chriscool, @Luzifer, #1370, #1371, #1372 +* dependency update for goprocess, @jbenet, #1392 +* internal polishing. @lgierth, @rht, @jbenet, @wking, #1377, #1359, + #1395, #1397 ### 0.3.5 - 2015-06-11 From f381a7dcd1e274d2fdc547493a0a7d30bc68b10e Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Wed, 24 Jun 2015 07:20:04 -0700 Subject: [PATCH 3/3] CHANGELOG.md: Add a note about #1414 License: MIT Signed-off-by: W. Trevor King --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1e7d528a1ee..6a880cbd554 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,8 @@ We don't know what the main changes will be yet. #### Stability and performance * better Linux FUSE-mount errors for missing mount points, @jbenet, #1391 +* fix "slice bounds out of range" error from concurrent FUSE writes, + @chriscool, #1414 * prevent wantmanager from leaking goroutines (and memory). @whyrusleeping, #1356 * store pins in IPFS objects. @tv42, #1381