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

new version #120

Merged
merged 1 commit into from
Aug 23, 2024
Merged

new version #120

merged 1 commit into from
Aug 23, 2024

Conversation

gammazero
Copy link
Contributor

No description provided.

Copy link

Suggested version: 0.1.21

Comparing to: v0.1.20 (diff)

Changes in configuration file(s):

diff --git a/go.mod b/go.mod
index d71616a..aa791ae 100644
--- a/go.mod
+++ b/go.mod
@@ -1,34 +1,34 @@
 module github.com/ipni/dhstore
 
-go 1.21
+go 1.22
 
 require (
 	// Foundation DB golang binding version 7.3.7
 	// See: https://github.com/apple/foundationdb/tree/7.3.7/bindings/go
 	github.com/apple/foundationdb/bindings/go v0.0.0-20230710184144-e3b440ca0859
-	github.com/cockroachdb/pebble v1.1.1
+	github.com/cockroachdb/pebble v1.1.2
 	github.com/ipfs/go-cid v0.4.1 // indirect
 	github.com/ipfs/go-log/v2 v2.5.1
-	github.com/ipni/go-libipni v0.6.9
-	github.com/libp2p/go-libp2p v0.35.2
+	github.com/ipni/go-libipni v0.6.11
+	github.com/libp2p/go-libp2p v0.36.2
 	github.com/mr-tron/base58 v1.2.0
 	github.com/multiformats/go-multiaddr v0.13.0
 	github.com/multiformats/go-multicodec v0.9.0
 	github.com/multiformats/go-multihash v0.2.3
 	github.com/multiformats/go-varint v0.0.7
-	github.com/prometheus/client_golang v1.19.1
+	github.com/prometheus/client_golang v1.20.0
 	github.com/stretchr/testify v1.9.0
 	go.opentelemetry.io/otel v1.14.0
 	go.opentelemetry.io/otel/exporters/prometheus v0.33.0
 	go.opentelemetry.io/otel/metric v0.33.0
 	go.opentelemetry.io/otel/sdk/metric v0.33.0
-	lukechampine.com/blake3 v1.2.1
+	lukechampine.com/blake3 v1.3.0
 )
 
 require (
 	github.com/DataDog/zstd v1.4.5 // indirect
 	github.com/beorn7/perks v1.0.1 // indirect
-	github.com/cespare/xxhash/v2 v2.2.0 // indirect
+	github.com/cespare/xxhash/v2 v2.3.0 // indirect
 	github.com/cockroachdb/errors v1.11.3 // indirect
 	github.com/cockroachdb/fifo v0.0.0-20240606204812-0bbfbd93a7ce // indirect
 	github.com/cockroachdb/logtags v0.0.0-20230118201751-21c54148d20b // indirect
@@ -37,12 +37,12 @@ require (
 	github.com/davecgh/go-spew v1.1.1 // indirect
 	github.com/decred/dcrd/dcrec/secp256k1/v4 v4.3.0 // indirect
 	github.com/getsentry/sentry-go v0.27.0 // indirect
-	github.com/go-logr/logr v1.2.4 // indirect
+	github.com/go-logr/logr v1.4.2 // indirect
 	github.com/go-logr/stdr v1.2.2 // indirect
 	github.com/gogo/protobuf v1.3.2 // indirect
 	github.com/golang/snappy v0.0.4 // indirect
-	github.com/klauspost/compress v1.17.8 // indirect
-	github.com/klauspost/cpuid/v2 v2.2.7 // indirect
+	github.com/klauspost/compress v1.17.9 // indirect
+	github.com/klauspost/cpuid/v2 v2.2.8 // indirect
 	github.com/kr/pretty v0.3.1 // indirect
 	github.com/kr/text v0.2.0 // indirect
 	github.com/libp2p/go-buffer-pool v0.1.0 // indirect
@@ -51,21 +51,22 @@ require (
 	github.com/multiformats/go-base32 v0.1.0 // indirect
 	github.com/multiformats/go-base36 v0.2.0 // indirect
 	github.com/multiformats/go-multibase v0.2.0 // indirect
+	github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
 	github.com/pkg/errors v0.9.1 // indirect
 	github.com/pmezard/go-difflib v1.0.0 // indirect
 	github.com/prometheus/client_model v0.6.1 // indirect
-	github.com/prometheus/common v0.48.0 // indirect
-	github.com/prometheus/procfs v0.12.0 // indirect
+	github.com/prometheus/common v0.55.0 // indirect
+	github.com/prometheus/procfs v0.15.1 // indirect
 	github.com/rogpeppe/go-internal v1.10.0 // indirect
 	github.com/spaolacci/murmur3 v1.1.0 // indirect
 	go.opentelemetry.io/otel/sdk v1.11.1 // indirect
 	go.opentelemetry.io/otel/trace v1.14.0 // indirect
 	go.uber.org/multierr v1.11.0 // indirect
 	go.uber.org/zap v1.27.0 // indirect
-	golang.org/x/crypto v0.23.0 // indirect
-	golang.org/x/exp v0.0.0-20240506185415-9bf2ced13842 // indirect
-	golang.org/x/sys v0.20.0 // indirect
-	golang.org/x/text v0.15.0 // indirect
-	google.golang.org/protobuf v1.34.1 // indirect
+	golang.org/x/crypto v0.26.0 // indirect
+	golang.org/x/exp v0.0.0-20240808152545-0cdaa3abc0fa // indirect
+	golang.org/x/sys v0.24.0 // indirect
+	golang.org/x/text v0.17.0 // indirect
+	google.golang.org/protobuf v1.34.2 // indirect
 	gopkg.in/yaml.v3 v3.0.1 // indirect
 )

gorelease says:

panic: runtime error: invalid memory address or nil pointer dereference [recovered]
	panic: runtime error: invalid memory address or nil pointer dereference
[signal SIGSEGV: segmentation violation code=0x1 addr=0x0 pc=0x5e6a2f]

goroutine 129 [running]:
go/types.(*Checker).handleBailout(0xc00009e200, 0xc000529c10)
	/opt/hostedtoolcache/go/1.22.6/x64/src/go/types/check.go:367 +0x88
panic({0x6a6260?, 0x8e1520?})
	/opt/hostedtoolcache/go/1.22.6/x64/src/runtime/panic.go:770 +0x132
go/types.(*StdSizes).Sizeof(0x0, {0x758110, 0x8e49a0})
	/opt/hostedtoolcache/go/1.22.6/x64/src/go/types/sizes.go:228 +0x30f
go/types.(*Config).sizeof(...)
	/opt/hostedtoolcache/go/1.22.6/x64/src/go/types/sizes.go:333
go/types.representableConst.func1({0x758110?, 0x8e49a0?})
	/opt/hostedtoolcache/go/1.22.6/x64/src/go/types/const.go:76 +0x9e
go/types.representableConst({0x759f18, 0x8d9c40}, 0xc00009e200, 0x8e49a0, 0xc000528028)
	/opt/hostedtoolcache/go/1.22.6/x64/src/go/types/const.go:92 +0x192
go/types.(*Checker).representation(0xc00009e200, 0xc00060a300, 0x8e49a0)
	/opt/hostedtoolcache/go/1.22.6/x64/src/go/types/const.go:256 +0x65
go/types.(*Checker).implicitTypeAndValue(0xc00009e200, 0xc00060a300, {0x758110, 0x8e49a0})
	/opt/hostedtoolcache/go/1.22.6/x64/src/go/types/expr.go:375 +0x2d7
go/types.(*Checker).convertUntyped(0xc00009e200, 0xc00060a300, {0x758110, 0x8e49a0})
	/opt/hostedtoolcache/go/1.22.6/x64/src/go/types/const.go:289 +0x3f
go/types.(*Checker).matchTypes(0xc00009e200, 0xc00060a2c0, 0xc00060a300)
	/opt/hostedtoolcache/go/1.22.6/x64/src/go/types/expr.go:926 +0x79
go/types.(*Checker).binary(0xc00009e200, 0xc00060a2c0, {0x7594c8, 0xc00034fd40}, {0x7590d8, 0xc000600280}, {0x7599d8, 0xc0006002a0}, 0x28, 0x98cc)
	/opt/hostedtoolcache/go/1.22.6/x64/src/go/types/expr.go:800 +0x166
go/types.(*Checker).exprInternal(0xc00009e200, 0x0, 0xc00060a2c0, {0x7594c8, 0xc00034fd40}, {0x0, 0x0})
	/opt/hostedtoolcache/go/1.22.6/x64/src/go/types/expr.go:1416 +0x206
go/types.(*Checker).rawExpr(0xc00009e200, 0x0, 0xc00060a2c0, {0x7594c8?, 0xc00034fd40?}, {0x0?, 0x0?}, 0x0)
	/opt/hostedtoolcache/go/1.22.6/x64/src/go/types/expr.go:979 +0x19e
go/types.(*Checker).expr(0xc00009e200, 0x758a48?, 0xc00060a2c0, {0x7594c8?, 0xc00034fd40?})
	/opt/hostedtoolcache/go/1.22.6/x64/src/go/types/expr.go:1513 +0x30
go/types.(*Checker).stmt(0xc00009e200, 0x0, {0x759678, 0xc00012d300})
	/opt/hostedtoolcache/go/1.22.6/x64/src/go/types/stmt.go:570 +0x11f2
go/types.(*Checker).stmtList(0xc00009e200, 0x0, {0xc000600400?, 0x0?, 0x0?})
	/opt/hostedtoolcache/go/1.22.6/x64/src/go/types/stmt.go:121 +0x85
go/types.(*Checker).funcBody(0xc00009e200, 0x758110?, {0xc0002d8e40?, 0x8e4b80?}, 0xc00060a000, 0xc00034fdd0, {0x0?, 0x0?})
	/opt/hostedtoolcache/go/1.22.6/x64/src/go/types/stmt.go:41 +0x331
go/types.(*Checker).funcDecl.func1()
	/opt/hostedtoolcache/go/1.22.6/x64/src/go/types/decl.go:852 +0x3a
go/types.(*Checker).processDelayed(0xc00009e200, 0x0)
	/opt/hostedtoolcache/go/1.22.6/x64/src/go/types/check.go:467 +0x162
go/types.(*Checker).checkFiles(0xc00009e200, {0xc00011e318, 0x1, 0x1})
	/opt/hostedtoolcache/go/1.22.6/x64/src/go/types/check.go:411 +0x1cc
go/types.(*Checker).Files(...)
	/opt/hostedtoolcache/go/1.22.6/x64/src/go/types/check.go:372
golang.org/x/tools/go/packages.(*loader).loadPackage(0xc000506000, 0xc000381020)
	/home/runner/go/pkg/mod/golang.org/x/[email protected]/go/packages/packages.go:1037 +0x932
golang.org/x/tools/go/packages.(*loader).loadRecursive.func1()
	/home/runner/go/pkg/mod/golang.org/x/[email protected]/go/packages/packages.go:847 +0x1a9
sync.(*Once).doSlow(0x0?, 0x0?)
	/opt/hostedtoolcache/go/1.22.6/x64/src/sync/once.go:74 +0xc2
sync.(*Once).Do(...)
	/opt/hostedtoolcache/go/1.22.6/x64/src/sync/once.go:65
golang.org/x/tools/go/packages.(*loader).loadRecursive(0x0?, 0x0?)
	/home/runner/go/pkg/mod/golang.org/x/[email protected]/go/packages/packages.go:835 +0x4a
golang.org/x/tools/go/packages.(*loader).loadRecursive.func1.1(0x0?)
	/home/runner/go/pkg/mod/golang.org/x/[email protected]/go/packages/packages.go:842 +0x26
created by golang.org/x/tools/go/packages.(*loader).loadRecursive.func1 in goroutine 59
	/home/runner/go/pkg/mod/golang.org/x/[email protected]/go/packages/packages.go:841 +0x94

gocompat says:

HEAD is now at 322f8d5 new version (#116)
Previous HEAD position was 322f8d5 new version (#116)
Switched to branch 'main'
Your branch is up to date with 'origin/main'.

Automatically created GitHub Release

A draft GitHub Release has been created.
It is going to be published when this PR is merged.
You can modify its' body to include any release notes you wish to include with the release.

@gammazero gammazero merged commit 3078e23 into main Aug 23, 2024
13 checks passed
@gammazero gammazero deleted the new-version branch August 23, 2024 09:35
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant