Skip to content

Commit b845e14

Browse files
Bump github.com/cosmos/ibc-go/v8 from 8.0.0-beta.0 to 8.0.0-beta.1 (#1648)
* Bump github.com/cosmos/ibc-go/v8 from 8.0.0-beta.0 to 8.0.0-beta.1 Bumps [github.com/cosmos/ibc-go/v8](https://github.com/cosmos/ibc-go) from 8.0.0-beta.0 to 8.0.0-beta.1. - [Release notes](https://github.com/cosmos/ibc-go/releases) - [Changelog](https://github.com/cosmos/ibc-go/blob/main/CHANGELOG.md) - [Commits](cosmos/ibc-go@v8.0.0-beta.0...v8.0.0-beta.1) --- updated-dependencies: - dependency-name: github.com/cosmos/ibc-go/v8 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> * Fix conflicts * Fix lint * Make lint pass --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Pino' Surace <[email protected]>
1 parent ca682c0 commit b845e14

17 files changed

+25
-25
lines changed

app/app.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -560,7 +560,7 @@ func NewWasmApp(
560560
appCodec, keys[ibcfeetypes.StoreKey],
561561
app.IBCKeeper.ChannelKeeper, // may be replaced with IBC middleware
562562
app.IBCKeeper.ChannelKeeper,
563-
&app.IBCKeeper.PortKeeper, app.AccountKeeper, app.BankKeeper,
563+
app.IBCKeeper.PortKeeper, app.AccountKeeper, app.BankKeeper,
564564
)
565565

566566
// Create Transfer Keepers
@@ -570,7 +570,7 @@ func NewWasmApp(
570570
app.GetSubspace(ibctransfertypes.ModuleName),
571571
app.IBCFeeKeeper, // ISC4 Wrapper: fee IBC middleware
572572
app.IBCKeeper.ChannelKeeper,
573-
&app.IBCKeeper.PortKeeper,
573+
app.IBCKeeper.PortKeeper,
574574
app.AccountKeeper,
575575
app.BankKeeper,
576576
scopedTransferKeeper,
@@ -583,7 +583,7 @@ func NewWasmApp(
583583
app.GetSubspace(icahosttypes.SubModuleName),
584584
app.IBCFeeKeeper, // use ics29 fee as ics4Wrapper in middleware stack
585585
app.IBCKeeper.ChannelKeeper,
586-
&app.IBCKeeper.PortKeeper,
586+
app.IBCKeeper.PortKeeper,
587587
app.AccountKeeper,
588588
scopedICAHostKeeper,
589589
app.MsgServiceRouter(),
@@ -595,7 +595,7 @@ func NewWasmApp(
595595
app.GetSubspace(icacontrollertypes.SubModuleName),
596596
app.IBCFeeKeeper, // use ics29 fee as ics4Wrapper in middleware stack
597597
app.IBCKeeper.ChannelKeeper,
598-
&app.IBCKeeper.PortKeeper,
598+
app.IBCKeeper.PortKeeper,
599599
scopedICAControllerKeeper,
600600
app.MsgServiceRouter(),
601601
authtypes.NewModuleAddress(govtypes.ModuleName).String(),
@@ -619,7 +619,7 @@ func NewWasmApp(
619619
distrkeeper.NewQuerier(app.DistrKeeper),
620620
app.IBCFeeKeeper, // ISC4 Wrapper: fee IBC middleware
621621
app.IBCKeeper.ChannelKeeper,
622-
&app.IBCKeeper.PortKeeper,
622+
app.IBCKeeper.PortKeeper,
623623
scopedWasmKeeper,
624624
app.TransferKeeper,
625625
app.MsgServiceRouter(),

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ require (
2424
github.com/stretchr/testify v1.8.4
2525
github.com/syndtr/goleveldb v1.0.1-0.20220721030215-126854af5e6d
2626
google.golang.org/genproto v0.0.0-20230803162519-f966b187b2e5 // indirect
27-
google.golang.org/grpc v1.58.1
27+
google.golang.org/grpc v1.58.2
2828
gopkg.in/yaml.v2 v2.4.0
2929
)
3030

@@ -47,7 +47,7 @@ require (
4747
github.com/cometbft/cometbft v0.38.0
4848
github.com/cosmos/cosmos-db v1.0.0
4949
github.com/cosmos/ibc-go/modules/capability v1.0.0-rc6
50-
github.com/cosmos/ibc-go/v8 v8.0.0-beta.0
50+
github.com/cosmos/ibc-go/v8 v8.0.0-beta.1
5151
github.com/distribution/reference v0.5.0
5252
github.com/rs/zerolog v1.31.0
5353
github.com/spf13/viper v1.16.0

go.sum

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -368,8 +368,8 @@ github.com/cosmos/iavl v1.0.0-rc.1 h1:5+73BEWW1gZOIUJKlk/1fpD4lOqqeFBA8KuV+NpkCp
368368
github.com/cosmos/iavl v1.0.0-rc.1/go.mod h1:CmTGqMnRnucjxbjduneZXT+0vPgNElYvdefjX2q9tYc=
369369
github.com/cosmos/ibc-go/modules/capability v1.0.0-rc6 h1:K3lWRr/WJkPdSWErxhQL1x0CTnJyONHwJSyaTefGDf0=
370370
github.com/cosmos/ibc-go/modules/capability v1.0.0-rc6/go.mod h1:DBP9jg+NoXU2buK5QDyf87lMjcQYN8qFlByNeNJmuhs=
371-
github.com/cosmos/ibc-go/v8 v8.0.0-beta.0 h1:Rppw2d8W40OR0hiLOLPm9fCniuLRKMEGFa/qohEKj+4=
372-
github.com/cosmos/ibc-go/v8 v8.0.0-beta.0/go.mod h1:PdH5J3hN9G13jVTQUP6YKHsFx7duUhFX9CrZetZcRsw=
371+
github.com/cosmos/ibc-go/v8 v8.0.0-beta.1 h1:vCateGEI1nl955HxLu/Nh+d8dYkribGjcrlQqWjjVnI=
372+
github.com/cosmos/ibc-go/v8 v8.0.0-beta.1/go.mod h1:1bpsE9mtwEbSRmCCo0VsIGe64JY2sXSxeNv8Be1nPxQ=
373373
github.com/cosmos/ics23/go v0.10.0 h1:iXqLLgp2Lp+EdpIuwXTYIQU+AiHj9mOC2X9ab++bZDM=
374374
github.com/cosmos/ics23/go v0.10.0/go.mod h1:ZfJSmng/TBNTBkFemHHHj5YY7VAU/MBU980F4VU1NG0=
375375
github.com/cosmos/keyring v1.2.0 h1:8C1lBP9xhImmIabyXW4c3vFjjLiBdGCmfLUfeZlV1Yo=
@@ -1645,8 +1645,8 @@ google.golang.org/grpc v1.48.0/go.mod h1:vN9eftEi1UMyUsIF80+uQXhHjbXYbm0uXoFCACu
16451645
google.golang.org/grpc v1.49.0/go.mod h1:ZgQEeidpAuNRZ8iRrlBKXZQP1ghovWIVhdJRyCDK+GI=
16461646
google.golang.org/grpc v1.50.0/go.mod h1:ZgQEeidpAuNRZ8iRrlBKXZQP1ghovWIVhdJRyCDK+GI=
16471647
google.golang.org/grpc v1.50.1/go.mod h1:ZgQEeidpAuNRZ8iRrlBKXZQP1ghovWIVhdJRyCDK+GI=
1648-
google.golang.org/grpc v1.58.1 h1:OL+Vz23DTtrrldqHK49FUOPHyY75rvFqJfXC84NYW58=
1649-
google.golang.org/grpc v1.58.1/go.mod h1:tgX3ZQDlNJGU96V6yHh1T/JeoBQ2TXdr43YbYSsCJk0=
1648+
google.golang.org/grpc v1.58.2 h1:SXUpjxeVF3FKrTYQI4f4KvbGD5u2xccdYdurwowix5I=
1649+
google.golang.org/grpc v1.58.2/go.mod h1:tgX3ZQDlNJGU96V6yHh1T/JeoBQ2TXdr43YbYSsCJk0=
16501650
google.golang.org/grpc/cmd/protoc-gen-go-grpc v1.1.0/go.mod h1:6Kw0yEErY5E/yWrBtf03jp27GLLJujG4z/JK95pnjjw=
16511651
google.golang.org/protobuf v0.0.0-20200109180630-ec00e32a8dfd/go.mod h1:DFci5gLYBciE7Vtevhsrf46CRTquxDuWsQurQQe4oz8=
16521652
google.golang.org/protobuf v0.0.0-20200221191635-4d8936d0db64/go.mod h1:kwYJMbMJ01Woi6D6+Kah6886xMZcty6N08ah7+eCXa0=

tests/e2e/ibc_fees_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99

1010
ibcfee "github.com/cosmos/ibc-go/v8/modules/apps/29-fee/types"
1111
ibctransfertypes "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types"
12-
clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types"
12+
clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" //nolint:staticcheck
1313
channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types"
1414
ibctesting "github.com/cosmos/ibc-go/v8/testing"
1515
"github.com/stretchr/testify/assert"

x/wasm/ibc_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
wasmvmtypes "github.com/CosmWasm/wasmvm/types"
77
abci "github.com/cometbft/cometbft/abci/types"
88
"github.com/cometbft/cometbft/libs/rand"
9-
clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types"
9+
clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" //nolint:staticcheck
1010
channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types"
1111
ibcexported "github.com/cosmos/ibc-go/v8/modules/core/exported"
1212
"github.com/stretchr/testify/assert"

x/wasm/ibctesting/chain.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import (
1515
tmversion "github.com/cometbft/cometbft/version"
1616
capabilitykeeper "github.com/cosmos/ibc-go/modules/capability/keeper"
1717
capabilitytypes "github.com/cosmos/ibc-go/modules/capability/types"
18-
clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types"
18+
clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" //nolint:staticcheck
1919
channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types"
2020
commitmenttypes "github.com/cosmos/ibc-go/v8/modules/core/23-commitment/types"
2121
host "github.com/cosmos/ibc-go/v8/modules/core/24-host"

x/wasm/ibctesting/endpoint.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"strings"
66

77
abci "github.com/cometbft/cometbft/abci/types"
8-
clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types"
8+
clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" //nolint:staticcheck
99
connectiontypes "github.com/cosmos/ibc-go/v8/modules/core/03-connection/types"
1010
channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types"
1111
commitmenttypes "github.com/cosmos/ibc-go/v8/modules/core/23-commitment/types"

x/wasm/ibctesting/event_utils.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"strings"
88

99
abci "github.com/cometbft/cometbft/abci/types"
10-
clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types"
10+
clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" //nolint:staticcheck
1111
channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types"
1212
)
1313

x/wasm/ibctesting/events.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"strconv"
77

88
abci "github.com/cometbft/cometbft/abci/types"
9-
clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types"
9+
clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" //nolint:staticcheck
1010
connectiontypes "github.com/cosmos/ibc-go/v8/modules/core/03-connection/types"
1111
channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types"
1212
"github.com/stretchr/testify/suite"

x/wasm/keeper/handler_plugin_encoders.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66

77
wasmvmtypes "github.com/CosmWasm/wasmvm/types"
88
ibctransfertypes "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types"
9-
ibcclienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types"
9+
ibcclienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" //nolint:staticcheck
1010
channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types"
1111

1212
errorsmod "cosmossdk.io/errors"

0 commit comments

Comments
 (0)