Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

trigger a release to capture the new options in dagjson.Decode #438

Closed
wants to merge 1 commit into from

Conversation

petar
Copy link
Contributor

@petar petar commented Jun 13, 2022

The new dagjson.Decode option is utilized by Edelweiss and Delegated Routing (Reframe), and transitively by Hydra and StoreTheIndex.

@petar petar requested a review from rvagg June 13, 2022 15:22
@github-actions
Copy link

Suggested version: v0.16.1
Comparing to: v0.16.0 (diff)

Changes in go.mod file(s):

diff --git a/go.mod b/go.mod
index 0937a0f..fff740e 100644
--- a/go.mod
+++ b/go.mod
@@ -1,16 +1,34 @@
 module github.com/ipld/go-ipld-prime
 
-go 1.16
+go 1.17
 
 require (
-	github.com/frankban/quicktest v1.14.2
-	github.com/google/go-cmp v0.5.7
-	github.com/ipfs/go-cid v0.0.4
-	github.com/multiformats/go-multicodec v0.3.0
+	github.com/frankban/quicktest v1.14.3
+	github.com/google/go-cmp v0.5.8
+	github.com/ipfs/go-cid v0.2.0
+	github.com/multiformats/go-multicodec v0.5.0
 	github.com/multiformats/go-multihash v0.1.0
 	github.com/polydawn/refmt v0.0.0-20201211092308-30ac6d18308e
+	github.com/warpfork/go-testmark v0.10.0
+	gopkg.in/yaml.v2 v2.4.0
+)
+
+require (
+	github.com/klauspost/cpuid/v2 v2.0.9 // indirect
+	github.com/kr/pretty v0.3.0 // indirect
+	github.com/kr/text v0.2.0 // indirect
+	github.com/minio/blake2b-simd v0.0.0-20160723061019-3f5f724cb5b1 // indirect
+	github.com/minio/sha256-simd v1.0.0 // indirect
+	github.com/mr-tron/base58 v1.2.0 // indirect
+	github.com/multiformats/go-base32 v0.0.3 // indirect
+	github.com/multiformats/go-base36 v0.1.0 // indirect
+	github.com/multiformats/go-multibase v0.0.3 // indirect
+	github.com/multiformats/go-varint v0.0.6 // indirect
+	github.com/rogpeppe/go-internal v1.6.1 // indirect
 	github.com/smartystreets/goconvey v1.6.4 // indirect
-	github.com/warpfork/go-testmark v0.3.0
+	github.com/spaolacci/murmur3 v1.1.0 // indirect
 	github.com/warpfork/go-wish v0.0.0-20200122115046-b9ea61034e4a // indirect
-	gopkg.in/yaml.v2 v2.4.0
+	golang.org/x/crypto v0.0.0-20210506145944-38f3c27a63bf // indirect
+	golang.org/x/sys v0.0.0-20210309074719-68d13333faf2 // indirect
+	lukechampine.com/blake3 v1.1.6 // indirect
 )diff --git a/storage/benchmarks/go.mod b/storage/benchmarks/go.mod
index 95ae143..a345754 100644
--- a/storage/benchmarks/go.mod
+++ b/storage/benchmarks/go.mod
@@ -1,13 +1,29 @@
 module github.com/ipld/go-ipld-prime/storage/benchmarks
 
-go 1.16
+go 1.17
 
 replace github.com/ipld/go-ipld-prime => ../..
 
 replace github.com/ipld/go-ipld-prime/storage/dsadapter => ../dsadapter
 
 require (
-	github.com/ipfs/go-ds-flatfs v0.4.5
-	github.com/ipld/go-ipld-prime v0.12.3
-	github.com/ipld/go-ipld-prime/storage/dsadapter v0.0.0-20211022093231-ebf675a9bd6d
+	github.com/ipfs/go-ds-flatfs v0.5.1
+	github.com/ipld/go-ipld-prime v0.16.0
+	github.com/ipld/go-ipld-prime/storage/dsadapter v0.0.0-20220405151432-0f76b5f88e86
+)
+
+require (
+	github.com/alexbrainman/goissue34681 v0.0.0-20191006012335-3fc7a47baff5 // indirect
+	github.com/gogo/protobuf v1.3.2 // indirect
+	github.com/google/uuid v1.3.0 // indirect
+	github.com/ipfs/go-datastore v0.5.1 // indirect
+	github.com/ipfs/go-log v1.0.5 // indirect
+	github.com/ipfs/go-log/v2 v2.5.1 // indirect
+	github.com/jbenet/goprocess v0.1.4 // indirect
+	github.com/mattn/go-isatty v0.0.14 // indirect
+	github.com/opentracing/opentracing-go v1.2.0 // indirect
+	go.uber.org/atomic v1.9.0 // indirect
+	go.uber.org/multierr v1.8.0 // indirect
+	go.uber.org/zap v1.21.0 // indirect
+	golang.org/x/sys v0.0.0-20220405210540-1e041c57c461 // indirect
 )
diff --git a/storage/bsadapter/go.mod b/storage/bsadapter/go.mod
index f76e325..916dfe9 100644
--- a/storage/bsadapter/go.mod
+++ b/storage/bsadapter/go.mod
@@ -1,19 +1,45 @@
 module github.com/ipld/go-ipld-prime/storage/bsadapter
 
-go 1.16
+go 1.17
 
 require (
-	github.com/google/uuid v1.2.0 // indirect
 	github.com/ipfs/go-block-format v0.0.3
-	github.com/ipfs/go-cid v0.1.0
-	github.com/ipfs/go-ipfs-blockstore v1.1.2
+	github.com/ipfs/go-cid v0.2.0
+	github.com/ipfs/go-ipfs-blockstore v1.2.0
+)
+
+require (
+	github.com/gogo/protobuf v1.3.2 // indirect
+	github.com/google/uuid v1.3.0 // indirect
+	github.com/hashicorp/golang-lru v0.5.4 // indirect
+	github.com/ipfs/bbloom v0.0.4 // indirect
+	github.com/ipfs/go-datastore v0.5.1 // indirect
+	github.com/ipfs/go-ipfs-ds-help v1.1.0 // indirect
+	github.com/ipfs/go-ipfs-util v0.0.2 // indirect
+	github.com/ipfs/go-ipld-format v0.4.0 // indirect
 	github.com/ipfs/go-log v1.0.5 // indirect
-	github.com/klauspost/cpuid/v2 v2.0.6 // indirect
+	github.com/ipfs/go-log/v2 v2.5.1 // indirect
+	github.com/ipfs/go-metrics-interface v0.0.1 // indirect
+	github.com/jbenet/goprocess v0.1.4 // indirect
+	github.com/klauspost/cpuid/v2 v2.0.12 // indirect
+	github.com/mattn/go-isatty v0.0.14 // indirect
+	github.com/minio/blake2b-simd v0.0.0-20160723061019-3f5f724cb5b1 // indirect
+	github.com/minio/sha256-simd v1.0.0 // indirect
+	github.com/mr-tron/base58 v1.2.0 // indirect
+	github.com/multiformats/go-base32 v0.0.4 // indirect
+	github.com/multiformats/go-base36 v0.1.0 // indirect
+	github.com/multiformats/go-multibase v0.0.3 // indirect
+	github.com/multiformats/go-multihash v0.1.0 // indirect
+	github.com/multiformats/go-varint v0.0.6 // indirect
+	github.com/opentracing/opentracing-go v1.2.0 // indirect
 	github.com/pkg/errors v0.9.1 // indirect
-	go.uber.org/multierr v1.7.0 // indirect
-	golang.org/x/crypto v0.0.0-20210513164829-c07d793c2f9a // indirect
-	golang.org/x/lint v0.0.0-20200302205851-738671d3881b // indirect
-	golang.org/x/sys v0.0.0-20210514084401-e8d321eab015 // indirect
+	github.com/spaolacci/murmur3 v1.1.0 // indirect
+	go.uber.org/atomic v1.9.0 // indirect
+	go.uber.org/multierr v1.8.0 // indirect
+	go.uber.org/zap v1.21.0 // indirect
+	golang.org/x/crypto v0.0.0-20220331220935-ae2d96664a29 // indirect
+	golang.org/x/sys v0.0.0-20220405210540-1e041c57c461 // indirect
 	gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
 	gopkg.in/yaml.v2 v2.3.0 // indirect
+	lukechampine.com/blake3 v1.1.7 // indirect
 )
diff --git a/storage/bsrvadapter/go.mod b/storage/bsrvadapter/go.mod
index 535a1ca..4021de5 100644
--- a/storage/bsrvadapter/go.mod
+++ b/storage/bsrvadapter/go.mod
@@ -1,9 +1,45 @@
 module github.com/ipld/go-ipld-prime/storage/bsrvadapter
 
-go 1.16
+go 1.17
 
 require (
 	github.com/ipfs/go-block-format v0.0.3
-	github.com/ipfs/go-blockservice v0.1.7
-	github.com/ipfs/go-cid v0.1.0
+	github.com/ipfs/go-blockservice v0.3.0
+	github.com/ipfs/go-cid v0.2.0
+)
+
+require (
+	github.com/gogo/protobuf v1.3.2 // indirect
+	github.com/google/uuid v1.3.0 // indirect
+	github.com/hashicorp/golang-lru v0.5.4 // indirect
+	github.com/ipfs/bbloom v0.0.4 // indirect
+	github.com/ipfs/go-datastore v0.5.1 // indirect
+	github.com/ipfs/go-ipfs-blockstore v1.2.0 // indirect
+	github.com/ipfs/go-ipfs-ds-help v1.1.0 // indirect
+	github.com/ipfs/go-ipfs-exchange-interface v0.1.0 // indirect
+	github.com/ipfs/go-ipfs-util v0.0.2 // indirect
+	github.com/ipfs/go-ipld-format v0.4.0 // indirect
+	github.com/ipfs/go-log v1.0.5 // indirect
+	github.com/ipfs/go-log/v2 v2.5.1 // indirect
+	github.com/ipfs/go-metrics-interface v0.0.1 // indirect
+	github.com/ipfs/go-verifcid v0.0.1 // indirect
+	github.com/jbenet/goprocess v0.1.4 // indirect
+	github.com/klauspost/cpuid/v2 v2.0.12 // indirect
+	github.com/mattn/go-isatty v0.0.14 // indirect
+	github.com/minio/blake2b-simd v0.0.0-20160723061019-3f5f724cb5b1 // indirect
+	github.com/minio/sha256-simd v1.0.0 // indirect
+	github.com/mr-tron/base58 v1.2.0 // indirect
+	github.com/multiformats/go-base32 v0.0.4 // indirect
+	github.com/multiformats/go-base36 v0.1.0 // indirect
+	github.com/multiformats/go-multibase v0.0.3 // indirect
+	github.com/multiformats/go-multihash v0.1.0 // indirect
+	github.com/multiformats/go-varint v0.0.6 // indirect
+	github.com/opentracing/opentracing-go v1.2.0 // indirect
+	github.com/spaolacci/murmur3 v1.1.0 // indirect
+	go.uber.org/atomic v1.9.0 // indirect
+	go.uber.org/multierr v1.8.0 // indirect
+	go.uber.org/zap v1.21.0 // indirect
+	golang.org/x/crypto v0.0.0-20220331220935-ae2d96664a29 // indirect
+	golang.org/x/sys v0.0.0-20220405210540-1e041c57c461 // indirect
+	lukechampine.com/blake3 v1.1.7 // indirect
 )
diff --git a/storage/dsadapter/go.mod b/storage/dsadapter/go.mod
index 3a22290..6deb24c 100644
--- a/storage/dsadapter/go.mod
+++ b/storage/dsadapter/go.mod
@@ -1,5 +1,10 @@
 module github.com/ipld/go-ipld-prime/storage/dsadapter
 
-go 1.16
+go 1.17
 
-require github.com/ipfs/go-datastore v0.4.6
+require github.com/ipfs/go-datastore v0.5.1
+
+require (
+	github.com/google/uuid v1.3.0 // indirect
+	github.com/jbenet/goprocess v0.1.4 // indirect
+)

gorelease says:

# github.com/ipld/go-ipld-prime/codec/dagcbor
## compatible changes
DecodeOptions.ExperimentalDeterminism: added
ErrTrailingBytes: added

# github.com/ipld/go-ipld-prime/codec/dagjson
## compatible changes
DecodeOptions.DontParseBeyondEnd: added

# github.com/ipld/go-ipld-prime/datamodel
## compatible changes
Path.Pop: added
UintNode: added

# github.com/ipld/go-ipld-prime/linking/cid
## compatible changes
Cid.ByteLen: added
Cid.WriteBytes: added

# github.com/ipld/go-ipld-prime/node/basicnode
## compatible changes
NewUint: added

# github.com/ipld/go-ipld-prime/traversal/patch
## compatible changes
package added

# summary
Suggested version: v0.17.0

gocompat says:

(empty)

Copy link
Member

@rvagg rvagg left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah ok, I was going to wait till I got #414 in, but there has been quite a bit of work since 0.16.0 that we probably should get out!

I need to do a CHANGELOG.md update for this though, and it's going to have to be an 0.17.0 so I'm going to block this PR and will work on an update this week that gets you a release.

@rvagg rvagg self-assigned this Jun 14, 2022
@rvagg rvagg mentioned this pull request Jun 14, 2022
9 tasks
@rvagg
Copy link
Member

rvagg commented Jun 14, 2022

Will take care of a release in #440

@rvagg rvagg closed this Jun 14, 2022
@rvagg rvagg deleted the rel branch June 14, 2022 11:36
@petar
Copy link
Contributor Author

petar commented Jun 14, 2022

Sounds good. Thank you.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
Status: 🎉 Done
Development

Successfully merging this pull request may close these issues.

2 participants