-
Notifications
You must be signed in to change notification settings - Fork 50
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
v0.21.0 release #534
Merged
Merged
v0.21.0 release #534
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Suggested version: Changes in diff --git a/go.mod b/go.mod
index f7da5c5..5c61d67 100644
--- a/go.mod
+++ b/go.mod
@@ -1,15 +1,15 @@
module github.com/ipld/go-ipld-prime
-go 1.18
+go 1.19
require (
- github.com/frankban/quicktest v1.14.4
+ github.com/frankban/quicktest v1.14.6
github.com/google/go-cmp v0.5.9
- github.com/ipfs/go-cid v0.3.2
- github.com/multiformats/go-multicodec v0.8.0
- github.com/multiformats/go-multihash v0.2.1
- github.com/polydawn/refmt v0.0.0-20201211092308-30ac6d18308e
- github.com/warpfork/go-testmark v0.11.0
+ github.com/ipfs/go-cid v0.4.1
+ github.com/multiformats/go-multicodec v0.9.0
+ github.com/multiformats/go-multihash v0.2.3
+ github.com/polydawn/refmt v0.89.0
+ github.com/warpfork/go-testmark v0.12.1
gopkg.in/yaml.v2 v2.4.0
)
@@ -24,10 +24,8 @@ require (
github.com/multiformats/go-multibase v0.0.3 // indirect
github.com/multiformats/go-varint v0.0.6 // indirect
github.com/rogpeppe/go-internal v1.9.0 // indirect
- github.com/smartystreets/goconvey v1.6.4 // indirect
github.com/spaolacci/murmur3 v1.1.0 // indirect
- github.com/warpfork/go-wish v0.0.0-20200122115046-b9ea61034e4a // indirect
- golang.org/x/crypto v0.0.0-20220525230936-793ad666bf5e // indirect
- golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1 // indirect
+ golang.org/x/crypto v0.1.0 // indirect
+ golang.org/x/sys v0.1.0 // indirect
lukechampine.com/blake3 v1.1.6 // indirect
)diff --git a/storage/benchmarks/go.mod b/storage/benchmarks/go.mod
index b4d550d..f292f7f 100644
--- a/storage/benchmarks/go.mod
+++ b/storage/benchmarks/go.mod
@@ -1,6 +1,6 @@
module github.com/ipld/go-ipld-prime/storage/benchmarks
-go 1.18
+go 1.19
replace github.com/ipld/go-ipld-prime => ../..
@@ -8,8 +8,8 @@ replace github.com/ipld/go-ipld-prime/storage/dsadapter => ../dsadapter
require (
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
+ github.com/ipld/go-ipld-prime v0.20.0
+ github.com/ipld/go-ipld-prime/storage/dsadapter v0.20.0
)
require (
@@ -17,13 +17,11 @@ require (
github.com/gogo/protobuf v1.3.2 // indirect
github.com/google/uuid v1.3.0 // indirect
github.com/ipfs/go-datastore v0.6.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-log v1.0.3 // indirect
+ github.com/ipfs/go-log/v2 v2.0.3 // 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
+ github.com/opentracing/opentracing-go v1.1.0 // indirect
+ go.uber.org/atomic v1.6.0 // indirect
+ go.uber.org/multierr v1.5.0 // indirect
+ go.uber.org/zap v1.10.0 // indirect
)
diff --git a/storage/bsadapter/go.mod b/storage/bsadapter/go.mod
index 15c29cf..c71db43 100644
--- a/storage/bsadapter/go.mod
+++ b/storage/bsadapter/go.mod
@@ -1,11 +1,11 @@
module github.com/ipld/go-ipld-prime/storage/bsadapter
-go 1.18
+go 1.19
require (
github.com/ipfs/go-block-format v0.0.3
- github.com/ipfs/go-cid v0.3.2
- github.com/ipfs/go-ipfs-blockstore v1.2.0
+ github.com/ipfs/go-cid v0.4.1
+ github.com/ipfs/go-ipfs-blockstore v1.3.0
)
require (
@@ -37,8 +37,8 @@ require (
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
+ golang.org/x/crypto v0.1.0 // indirect
+ golang.org/x/sys v0.1.0 // 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 56598f5..ca5792e 100644
--- a/storage/bsrvadapter/go.mod
+++ b/storage/bsrvadapter/go.mod
@@ -1,11 +1,11 @@
module github.com/ipld/go-ipld-prime/storage/bsrvadapter
-go 1.18
+go 1.19
require (
github.com/ipfs/go-block-format v0.0.3
- github.com/ipfs/go-blockservice v0.5.0
- github.com/ipfs/go-cid v0.3.2
+ github.com/ipfs/go-blockservice v0.5.1
+ github.com/ipfs/go-cid v0.4.1
)
require (
@@ -43,8 +43,8 @@ require (
go.uber.org/atomic v1.10.0 // indirect
go.uber.org/multierr v1.8.0 // indirect
go.uber.org/zap v1.22.0 // indirect
- golang.org/x/crypto v0.0.0-20220525230936-793ad666bf5e // indirect
- golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab // indirect
+ golang.org/x/crypto v0.1.0 // indirect
+ golang.org/x/sys v0.1.0 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
lukechampine.com/blake3 v1.1.7 // indirect
)
diff --git a/storage/dsadapter/go.mod b/storage/dsadapter/go.mod
index 13fdfb4..bec8ac3 100644
--- a/storage/dsadapter/go.mod
+++ b/storage/dsadapter/go.mod
@@ -1,6 +1,6 @@
module github.com/ipld/go-ipld-prime/storage/dsadapter
-go 1.18
+go 1.19
require github.com/ipfs/go-datastore v0.6.0
Automatically created GitHub ReleaseA draft GitHub Release has been created. |
3 tasks
willscott
approved these changes
Aug 9, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
CHANGELOG.md
under Released Changes with curated and subsystem-grouped list of changes and links to relevant PRsversion.json
CHANGELOG.md
contents