File tree 4 files changed +25
-3
lines changed
4 files changed +25
-3
lines changed Original file line number Diff line number Diff line change 1
1
# go-graphsync changelog
2
2
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
+
3
23
# go-graphsync 0.2.1
4
24
5
25
Compatibility fix for 0.2.0
Original file line number Diff line number Diff line change @@ -8,12 +8,12 @@ import (
8
8
"time"
9
9
10
10
blocks "github.com/ipfs/go-block-format"
11
- "github.com/ipfs/go-graphsync/notifications"
12
11
logging "github.com/ipfs/go-log"
13
12
"github.com/libp2p/go-libp2p-core/peer"
14
13
15
14
gsmsg "github.com/ipfs/go-graphsync/message"
16
15
gsnet "github.com/ipfs/go-graphsync/network"
16
+ "github.com/ipfs/go-graphsync/notifications"
17
17
)
18
18
19
19
var log = logging .Logger ("graphsync" )
Original file line number Diff line number Diff line change @@ -4,11 +4,12 @@ import (
4
4
"context"
5
5
"errors"
6
6
7
+ "github.com/libp2p/go-libp2p-core/peer"
8
+
7
9
"github.com/ipfs/go-graphsync"
8
10
gsmsg "github.com/ipfs/go-graphsync/message"
9
11
"github.com/ipfs/go-graphsync/notifications"
10
12
"github.com/ipfs/go-graphsync/responsemanager/peerresponsemanager"
11
- "github.com/libp2p/go-libp2p-core/peer"
12
13
)
13
14
14
15
var errNetworkError = errors .New ("network error" )
Original file line number Diff line number Diff line change 5
5
"sync"
6
6
"testing"
7
7
8
- "github.com/ipfs/go-graphsync/notifications"
9
8
"github.com/stretchr/testify/require"
9
+
10
+ "github.com/ipfs/go-graphsync/notifications"
10
11
)
11
12
12
13
type TestSubscriber struct {
You can’t perform that action at this time.
0 commit comments