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

build(deps): Bump cosmossdk.io/core from 1.0.0-alpha.3 to 1.0.0-alpha.4 #994

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@ go 1.23
toolchain go1.23.1

require (
cosmossdk.io/core v1.0.0-alpha.3
cosmossdk.io/core v1.0.0-alpha.4
github.com/cosmos/ics23/go v0.11.0
github.com/emicklei/dot v1.6.2
github.com/gogo/protobuf v1.3.2
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cosmossdk.io/core v1.0.0-alpha.3 h1:pnxaYAas7llXgVz1lM7X6De74nWrhNKnB3yMKe4OUUA=
cosmossdk.io/core v1.0.0-alpha.3/go.mod h1:3u9cWq1FAVtiiCrDPpo4LhR+9V6k/ycSG4/Y/tREWCY=
cosmossdk.io/core v1.0.0-alpha.4 h1:9iuroT9ejDYETCsGkzkvs/wAY/5UFl7nCIINFRxyMJY=
cosmossdk.io/core v1.0.0-alpha.4/go.mod h1:3u9cWq1FAVtiiCrDPpo4LhR+9V6k/ycSG4/Y/tREWCY=
github.com/cosmos/gogoproto v1.7.0 h1:79USr0oyXAbxg3rspGh/m4SWNyoz/GLaAh0QlCe2fro=
github.com/cosmos/gogoproto v1.7.0/go.mod h1:yWChEv5IUEYURQasfyBW5ffkMHR/90hiHgbNgrtp4j0=
github.com/cosmos/ics23/go v0.11.0 h1:jk5skjT0TqX5e5QJbEnwXIS2yI2vnmLOgpQPeM5RtnU=

Unchanged files with check annotations Beta

runtime.GC()
<-time.NewTimer(2 * time.Millisecond).C
b2 := append(b, 'd') //nolint:gocritic
s.Equal("abc", string(b))

Check failure on line 30 in internal/bytes/string_test.go

GitHub Actions / golangci-lint

s.Equal undefined (type *StringSuite has no field or method Equal) (typecheck)
s.Equal("abcd", string(b2))

Check failure on line 31 in internal/bytes/string_test.go

GitHub Actions / golangci-lint

s.Equal undefined (type *StringSuite has no field or method Equal) (typecheck)
}
}
str := unsafeConvertBytes()
runtime.GC()
<-time.NewTimer(2 * time.Millisecond).C
s.Equal("abc", str)

Check failure on line 46 in internal/bytes/string_test.go

GitHub Actions / golangci-lint

s.Equal undefined (type *StringSuite has no field or method Equal) (typecheck)
}
}
// Rand methods
func (r *Rand) Seed(seed int64) {
r.Lock()

Check failure on line 84 in internal/rand/random.go

GitHub Actions / golangci-lint

r.Lock undefined (type *Rand has no field or method Lock) (typecheck)
r.reset(seed)
r.Unlock()

Check failure on line 86 in internal/rand/random.go

GitHub Actions / golangci-lint

r.Unlock undefined (type *Rand has no field or method Unlock) (typecheck)
}
// Str constructs a random alphanumeric string of given length.
}
func (r *Rand) Uint32() uint32 {
r.Lock()

Check failure on line 117 in internal/rand/random.go

GitHub Actions / golangci-lint

r.Lock undefined (type *Rand has no field or method Lock) (typecheck)
u32 := r.rand.Uint32()
r.Unlock()

Check failure on line 119 in internal/rand/random.go

GitHub Actions / golangci-lint

r.Unlock undefined (type *Rand has no field or method Unlock) (typecheck)
return u32
}
}
func (r *Rand) Uint() uint {
r.Lock()

Check failure on line 128 in internal/rand/random.go

GitHub Actions / golangci-lint

r.Lock undefined (type *Rand has no field or method Lock) (typecheck)
i := r.rand.Int()
r.Unlock()

Check failure on line 130 in internal/rand/random.go

GitHub Actions / golangci-lint

r.Unlock undefined (type *Rand has no field or method Unlock) (typecheck)
return uint(i)
}
}
func (r *Rand) Int() int {
r.Lock()

Check failure on line 147 in internal/rand/random.go

GitHub Actions / golangci-lint

r.Lock undefined (type *Rand has no field or method Lock) (typecheck)
defer r.Unlock()
i := r.rand.Int()
return i