Commit 0928b5a4 authored by hannahhoward's avatar hannahhoward

feat(CHANGELOG): update for 0.3.0

update for 0.3.0 + style fixes
parent bdf16c82
# go-graphsync changelog # go-graphsync changelog
# go-graphsync 0.3.0
Significant updates allow for:
- completed response hooks run when response is done going over wire (or at least transmitted)
- listening for when blocks are actually sent
- being notified of network send errors on responder
### Changelog
- github.com/ipfs/go-graphsync:
- docs(CHANGELOG): update for 0.2.1 ([ipfs/go-graphsync#103](https://github.com/ipfs/go-graphsync/pull/103))
- Track actual network operations in a response (#102) ([ipfs/go-graphsync#102](https://github.com/ipfs/go-graphsync/pull/102))
- feat(responsecache): prune blocks more intelligently (#101) ([ipfs/go-graphsync#101](https://github.com/ipfs/go-graphsync/pull/101))
### Contributors
| Contributor | Commits | Lines ± | Files Changed |
|-------------|---------|---------|---------------|
| Hannah Howard | 2 | +1983/-927 | 29 |
# go-graphsync 0.2.1 # go-graphsync 0.2.1
Compatibility fix for 0.2.0 Compatibility fix for 0.2.0
......
...@@ -8,12 +8,12 @@ import ( ...@@ -8,12 +8,12 @@ import (
"time" "time"
blocks "github.com/ipfs/go-block-format" blocks "github.com/ipfs/go-block-format"
"github.com/ipfs/go-graphsync/notifications"
logging "github.com/ipfs/go-log" logging "github.com/ipfs/go-log"
"github.com/libp2p/go-libp2p-core/peer" "github.com/libp2p/go-libp2p-core/peer"
gsmsg "github.com/ipfs/go-graphsync/message" gsmsg "github.com/ipfs/go-graphsync/message"
gsnet "github.com/ipfs/go-graphsync/network" gsnet "github.com/ipfs/go-graphsync/network"
"github.com/ipfs/go-graphsync/notifications"
) )
var log = logging.Logger("graphsync") var log = logging.Logger("graphsync")
......
...@@ -4,11 +4,12 @@ import ( ...@@ -4,11 +4,12 @@ import (
"context" "context"
"errors" "errors"
"github.com/libp2p/go-libp2p-core/peer"
"github.com/ipfs/go-graphsync" "github.com/ipfs/go-graphsync"
gsmsg "github.com/ipfs/go-graphsync/message" gsmsg "github.com/ipfs/go-graphsync/message"
"github.com/ipfs/go-graphsync/notifications" "github.com/ipfs/go-graphsync/notifications"
"github.com/ipfs/go-graphsync/responsemanager/peerresponsemanager" "github.com/ipfs/go-graphsync/responsemanager/peerresponsemanager"
"github.com/libp2p/go-libp2p-core/peer"
) )
var errNetworkError = errors.New("network error") var errNetworkError = errors.New("network error")
......
...@@ -5,8 +5,9 @@ import ( ...@@ -5,8 +5,9 @@ import (
"sync" "sync"
"testing" "testing"
"github.com/ipfs/go-graphsync/notifications"
"github.com/stretchr/testify/require" "github.com/stretchr/testify/require"
"github.com/ipfs/go-graphsync/notifications"
) )
type TestSubscriber struct { type TestSubscriber struct {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment