Skip to content

Commit d2d2532

Browse files
authored
Merge pull request #104 from ipfs/release/v0.3.0
feat(CHANGELOG): update for 0.3.0
2 parents bdf16c8 + 0928b5a commit d2d2532

File tree

4 files changed

+25
-3
lines changed

4 files changed

+25
-3
lines changed

Diff for: CHANGELOG.md

+20
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,25 @@
11
# go-graphsync changelog
22

3+
# go-graphsync 0.3.0
4+
5+
Significant updates allow for:
6+
- completed response hooks run when response is done going over wire (or at least transmitted)
7+
- listening for when blocks are actually sent
8+
- being notified of network send errors on responder
9+
10+
### Changelog
11+
12+
- github.com/ipfs/go-graphsync:
13+
- docs(CHANGELOG): update for 0.2.1 ([ipfs/go-graphsync#103](https://github.com/ipfs/go-graphsync/pull/103))
14+
- Track actual network operations in a response (#102) ([ipfs/go-graphsync#102](https://github.com/ipfs/go-graphsync/pull/102))
15+
- feat(responsecache): prune blocks more intelligently (#101) ([ipfs/go-graphsync#101](https://github.com/ipfs/go-graphsync/pull/101))
16+
17+
### Contributors
18+
19+
| Contributor | Commits | Lines ± | Files Changed |
20+
|-------------|---------|---------|---------------|
21+
| Hannah Howard | 2 | +1983/-927 | 29 |
22+
323
# go-graphsync 0.2.1
424

525
Compatibility fix for 0.2.0

Diff for: messagequeue/messagequeue.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ import (
88
"time"
99

1010
blocks "github.com/ipfs/go-block-format"
11-
"github.com/ipfs/go-graphsync/notifications"
1211
logging "github.com/ipfs/go-log"
1312
"github.com/libp2p/go-libp2p-core/peer"
1413

1514
gsmsg "github.com/ipfs/go-graphsync/message"
1615
gsnet "github.com/ipfs/go-graphsync/network"
16+
"github.com/ipfs/go-graphsync/notifications"
1717
)
1818

1919
var log = logging.Logger("graphsync")

Diff for: responsemanager/subscriber.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,12 @@ import (
44
"context"
55
"errors"
66

7+
"github.com/libp2p/go-libp2p-core/peer"
8+
79
"github.com/ipfs/go-graphsync"
810
gsmsg "github.com/ipfs/go-graphsync/message"
911
"github.com/ipfs/go-graphsync/notifications"
1012
"github.com/ipfs/go-graphsync/responsemanager/peerresponsemanager"
11-
"github.com/libp2p/go-libp2p-core/peer"
1213
)
1314

1415
var errNetworkError = errors.New("network error")

Diff for: testutil/testnotifications.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@ import (
55
"sync"
66
"testing"
77

8-
"github.com/ipfs/go-graphsync/notifications"
98
"github.com/stretchr/testify/require"
9+
10+
"github.com/ipfs/go-graphsync/notifications"
1011
)
1112

1213
type TestSubscriber struct {

0 commit comments

Comments
 (0)