Skip to content

Commit 061d668

Browse files
authored
Merge pull request #144 from ipfs/release/v0.6.0
Release/v0.6.0
2 parents 2d101ff + 611735c commit 061d668

File tree

3 files changed

+36
-13
lines changed

3 files changed

+36
-13
lines changed

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,29 @@
11
# go-graphsync changelog
22

3+
# go-graphsync 0.6.0
4+
5+
Major code refactor for simplicity, ease of understanding
6+
7+
### Changelog
8+
9+
- github.com/ipfs/go-graphsync:
10+
- Merge branch 'master' into release/v0.6.0
11+
- move block allocation into message queue (#140) ([ipfs/go-graphsync#140](https://github.com/ipfs/go-graphsync/pull/140))
12+
- Response Assembler Refactor (#138) ([ipfs/go-graphsync#138](https://github.com/ipfs/go-graphsync/pull/138))
13+
- Add error listener on receiver (#136) ([ipfs/go-graphsync#136](https://github.com/ipfs/go-graphsync/pull/136))
14+
- Run testplan on in CI (#137) ([ipfs/go-graphsync#137](https://github.com/ipfs/go-graphsync/pull/137))
15+
- fix(responsemanager): fix network error propogation (#133) ([ipfs/go-graphsync#133](https://github.com/ipfs/go-graphsync/pull/133))
16+
- testground test for graphsync (#132) ([ipfs/go-graphsync#132](https://github.com/ipfs/go-graphsync/pull/132))
17+
- docs(CHANGELOG): update for v0.5.2 ([ipfs/go-graphsync#130](https://github.com/ipfs/go-graphsync/pull/1
18+
19+
### Contributors
20+
21+
| Contributor | Commits | Lines ± | Files Changed |
22+
|-------------|---------|---------|---------------|
23+
| Alex Cruikshank | 4 | +3269/-1919 | 47 |
24+
| Hannah Howard | 3 | +777/-511 | 25 |
25+
| hannahhoward | 1 | +34/-13 | 3 |
26+
327
# go-graphsync 0.5.2
428

529
Minor release resolves bugs in notification system

responsemanager/responseassembler/peerlinktracker.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,10 @@ package responseassembler
33
import (
44
"sync"
55

6+
"github.com/ipld/go-ipld-prime"
7+
68
"github.com/ipfs/go-graphsync"
79
"github.com/ipfs/go-graphsync/linktracker"
8-
"github.com/ipld/go-ipld-prime"
910
)
1011

1112
type peerLinkTracker struct {

testplans/graphsync/main.go

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,13 @@ import (
1111
"strings"
1212
"time"
1313

14-
badgerds "github.com/ipfs/go-ds-badger"
1514
"github.com/dustin/go-humanize"
1615
allselector "github.com/hannahhoward/all-selector"
1716
"github.com/ipfs/go-blockservice"
1817
"github.com/ipfs/go-cid"
1918
ds "github.com/ipfs/go-datastore"
2019
dss "github.com/ipfs/go-datastore/sync"
21-
"github.com/ipfs/go-graphsync/storeutil"
20+
badgerds "github.com/ipfs/go-ds-badger"
2221
blockstore "github.com/ipfs/go-ipfs-blockstore"
2322
chunk "github.com/ipfs/go-ipfs-chunker"
2423
offline "github.com/ipfs/go-ipfs-exchange-offline"
@@ -28,24 +27,23 @@ import (
2827
"github.com/ipfs/go-unixfs/importer/balanced"
2928
ihelper "github.com/ipfs/go-unixfs/importer/helpers"
3029
cidlink "github.com/ipld/go-ipld-prime/linking/cid"
31-
"github.com/libp2p/go-libp2p-core/metrics"
32-
"github.com/testground/sdk-go/network"
33-
"golang.org/x/sync/errgroup"
34-
35-
gs "github.com/ipfs/go-graphsync"
36-
gsi "github.com/ipfs/go-graphsync/impl"
37-
gsnet "github.com/ipfs/go-graphsync/network"
38-
3930
"github.com/libp2p/go-libp2p"
4031
"github.com/libp2p/go-libp2p-core/host"
32+
"github.com/libp2p/go-libp2p-core/metrics"
4133
"github.com/libp2p/go-libp2p-core/peer"
4234
noise "github.com/libp2p/go-libp2p-noise"
4335
secio "github.com/libp2p/go-libp2p-secio"
4436
tls "github.com/libp2p/go-libp2p-tls"
45-
37+
"github.com/testground/sdk-go/network"
4638
"github.com/testground/sdk-go/run"
4739
"github.com/testground/sdk-go/runtime"
4840
"github.com/testground/sdk-go/sync"
41+
"golang.org/x/sync/errgroup"
42+
43+
gs "github.com/ipfs/go-graphsync"
44+
gsi "github.com/ipfs/go-graphsync/impl"
45+
gsnet "github.com/ipfs/go-graphsync/network"
46+
"github.com/ipfs/go-graphsync/storeutil"
4947
)
5048

5149
var testcases = map[string]interface{}{
@@ -409,7 +407,7 @@ func createDatastore(diskStore bool) ds.Datastore {
409407
defopts := badgerds.DefaultOptions
410408
defopts.SyncWrites = false
411409
defopts.Truncate = true
412-
datastore, err := badgerds.NewDatastore(path, &defopts)
410+
datastore, err := badgerds.NewDatastore(path, &defopts)
413411
if err != nil {
414412
panic(err)
415413
}

0 commit comments

Comments
 (0)