Skip to content

Commit 69e6362

Browse files
authored
[chore] Update ibc-go to v7.5.0 (#385)
* update ibc-go to v7.5.0 * update changelog
1 parent 50da10b commit 69e6362

File tree

6 files changed

+10
-9
lines changed

6 files changed

+10
-9
lines changed

.golangci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
run:
22
timeout: 5m
33
go: '1.22.3'
4-
skip-files:
5-
- ".*\\.pb\\.go$"
6-
- ".*\\.pb\\.gw\\.\\.go$"
7-
- ".*\\.pulsar\\.go$"
84

95
linters:
106
disable-all: true
@@ -29,6 +25,10 @@ linters:
2925
- typecheck
3026

3127
issues:
28+
exclude-files:
29+
- ".*\\.pb\\.go$"
30+
- ".*\\.pb\\.gw\\.\\.go$"
31+
- ".*\\.pulsar\\.go$"
3232
exclude-rules:
3333
- text: 'Use of weak random number generator'
3434
linters:

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## Unreleased
44

55
- (bump) Use go 1.22.3
6-
- (bump) Use cosmos-sdk package v0.47.11 / ibc-go v7.4.0
6+
- (bump) Use cosmos-sdk package v0.47.11 / ibc-go v7.5.0
77
- (bump) replace github.com/tendermint/tendermint by github.com/cometbft/cometbft v0.37.5
88
- (bump) migrated from gogo/protobuf to cosmos/gogoproto
99
- (bump) Use go-owasm v0.3.1

app/app.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -494,6 +494,8 @@ func NewBandApp(
494494
scopedICAHostKeeper,
495495
app.MsgServiceRouter(),
496496
)
497+
app.ICAHostKeeper.WithQueryRouter(app.GRPCQueryRouter())
498+
497499
icaModule := ica.NewAppModule(nil, &app.ICAHostKeeper)
498500
icaHostIBCModule := icahost.NewIBCModule(app.ICAHostKeeper)
499501

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ require (
1515
github.com/cosmos/cosmos-sdk v0.47.11
1616
github.com/cosmos/go-bip39 v1.0.0
1717
github.com/cosmos/gogoproto v1.4.10
18-
github.com/cosmos/ibc-go/v7 v7.4.0
18+
github.com/cosmos/ibc-go/v7 v7.5.0
1919
github.com/ethereum/go-ethereum v1.11.6
2020
github.com/golang/protobuf v1.5.4
2121
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -356,8 +356,8 @@ github.com/cosmos/gogoproto v1.4.10 h1:QH/yT8X+c0F4ZDacDv3z+xE3WU1P1Z3wQoLMBRJoK
356356
github.com/cosmos/gogoproto v1.4.10/go.mod h1:3aAZzeRWpAwr+SS/LLkICX2/kDFyaYVzckBDzygIxek=
357357
github.com/cosmos/iavl v0.20.1 h1:rM1kqeG3/HBT85vsZdoSNsehciqUQPWrR4BYmqE2+zg=
358358
github.com/cosmos/iavl v0.20.1/go.mod h1:WO7FyvaZJoH65+HFOsDir7xU9FWk2w9cHXNW1XHcl7A=
359-
github.com/cosmos/ibc-go/v7 v7.4.0 h1:8FqYMptvksgMvlbN4UW9jFxTXzsPyfAzEZurujXac8M=
360-
github.com/cosmos/ibc-go/v7 v7.4.0/go.mod h1:L/KaEhzV5TGUCTfGysVgMBQtl5Dm7hHitfpk+GIeoAo=
359+
github.com/cosmos/ibc-go/v7 v7.5.0 h1:tvPyuTsNqS1hZK69Wq7MZIvZIg8AblMkcnkAndtQet0=
360+
github.com/cosmos/ibc-go/v7 v7.5.0/go.mod h1:ktFg5GvKOyrGCqTWtW7Grj5uweU4ZapxrNeVS1CLLbo=
361361
github.com/cosmos/ics23/go v0.10.0 h1:iXqLLgp2Lp+EdpIuwXTYIQU+AiHj9mOC2X9ab++bZDM=
362362
github.com/cosmos/ics23/go v0.10.0/go.mod h1:ZfJSmng/TBNTBkFemHHHj5YY7VAU/MBU980F4VU1NG0=
363363
github.com/cosmos/keyring v1.2.0 h1:8C1lBP9xhImmIabyXW4c3vFjjLiBdGCmfLUfeZlV1Yo=

yoda/executor/rest.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@ func (e *RestExec) Exec(code []byte, arg string, env interface{}) (ExecResult, e
5656

5757
r := externalExecutionResponse{}
5858
err = resp.JSON(&r)
59-
6059
if err != nil {
6160
return ExecResult{}, err
6261
}

0 commit comments

Comments
 (0)