Skip to content

Commit

Permalink
feat(CHANGELOG): update for v0.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hannahhoward committed Jan 14, 2022
1 parent 98dd895 commit e8cdcb2
Show file tree
Hide file tree
Showing 5 changed files with 38 additions and 13 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,28 @@
# go-graphsync changelog

# go-graphsync v0.12.0

New features (UnixFS Fetching!) and additional tracing

### Changelog

- github.com/ipfs/go-graphsync:
- Use do not send blocks for pause/resume & prevent processing of blocks on cancelled requests (#333) ([ipfs/go-graphsync#333](https://github.com/ipfs/go-graphsync/pull/333))
- Support unixfs reification in default linksystem (#329) ([ipfs/go-graphsync#329](https://github.com/ipfs/go-graphsync/pull/329))
- Don't run hooks on blocks we didn't have (#331) ([ipfs/go-graphsync#331](https://github.com/ipfs/go-graphsync/pull/331))
- feat(responsemanager): trace full messages via links to responses (#325) ([ipfs/go-graphsync#325](https://github.com/ipfs/go-graphsync/pull/325))
- chore(requestmanager): rename processResponses internals for consistency (#328) ([ipfs/go-graphsync#328](https://github.com/ipfs/go-graphsync/pull/328))
- Response message tracing (#327) ([ipfs/go-graphsync#327](https://github.com/ipfs/go-graphsync/pull/327))
- fix(testutil): fix tracing span collection (#324) ([ipfs/go-graphsync#324](https://github.com/ipfs/go-graphsync/pull/324))

### Contributors

| Contributor | Commits | Lines ± | Files Changed |
|-------------|---------|---------|---------------|
| Hannah Howard | 5 | +576/-311 | 27 |
| Rod Vagg | 2 | +127/-71 | 9 |


# go-graphsync v0.11.5

Additional tracing, context hooks, improvements to IPLD traversal
Expand Down
21 changes: 11 additions & 10 deletions impl/graphsync_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,6 @@ import (
"github.com/ipfs/go-cid"
"github.com/ipfs/go-datastore"
dss "github.com/ipfs/go-datastore/sync"
"github.com/ipfs/go-graphsync"
"github.com/ipfs/go-graphsync/cidset"
"github.com/ipfs/go-graphsync/donotsendfirstblocks"
"github.com/ipfs/go-graphsync/ipldutil"
gsmsg "github.com/ipfs/go-graphsync/message"
gsnet "github.com/ipfs/go-graphsync/network"
"github.com/ipfs/go-graphsync/requestmanager/hooks"
"github.com/ipfs/go-graphsync/storeutil"
"github.com/ipfs/go-graphsync/taskqueue"
"github.com/ipfs/go-graphsync/testutil"
bstore "github.com/ipfs/go-ipfs-blockstore"
chunker "github.com/ipfs/go-ipfs-chunker"
offline "github.com/ipfs/go-ipfs-exchange-offline"
Expand All @@ -49,6 +39,17 @@ import (
"github.com/libp2p/go-libp2p-core/peer"
mocknet "github.com/libp2p/go-libp2p/p2p/net/mock"
"github.com/stretchr/testify/require"

"github.com/ipfs/go-graphsync"
"github.com/ipfs/go-graphsync/cidset"
"github.com/ipfs/go-graphsync/donotsendfirstblocks"
"github.com/ipfs/go-graphsync/ipldutil"
gsmsg "github.com/ipfs/go-graphsync/message"
gsnet "github.com/ipfs/go-graphsync/network"
"github.com/ipfs/go-graphsync/requestmanager/hooks"
"github.com/ipfs/go-graphsync/storeutil"
"github.com/ipfs/go-graphsync/taskqueue"
"github.com/ipfs/go-graphsync/testutil"
)

func TestMakeRequestToNetwork(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion messagequeue/messagequeue.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ import (
"sync"
"time"

"github.com/ipfs/go-graphsync"
logging "github.com/ipfs/go-log/v2"
"github.com/libp2p/go-libp2p-core/peer"
"go.opentelemetry.io/otel"
"go.opentelemetry.io/otel/attribute"
"go.opentelemetry.io/otel/codes"
"go.opentelemetry.io/otel/trace"

"github.com/ipfs/go-graphsync"
gsmsg "github.com/ipfs/go-graphsync/message"
gsnet "github.com/ipfs/go-graphsync/network"
"github.com/ipfs/go-graphsync/notifications"
Expand Down
3 changes: 2 additions & 1 deletion peermanager/peermessagemanager.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@ package peermanager
import (
"context"

"github.com/ipfs/go-graphsync/messagequeue"
"github.com/libp2p/go-libp2p-core/peer"

"github.com/ipfs/go-graphsync/messagequeue"
)

// PeerQueue is a process that sends messages to a peer
Expand Down
2 changes: 1 addition & 1 deletion version.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"version": "v0.11.5"
"version": "v0.12.0"
}

0 comments on commit e8cdcb2

Please sign in to comment.