From d41a895383f6c8e75d1767d66532e86835cc3053 Mon Sep 17 00:00:00 2001 From: Robert Zaremba Date: Tue, 18 Jun 2024 13:53:53 +0200 Subject: [PATCH 1/4] ibc-go --- RELEASE_NOTES.md | 2 ++ go.mod | 2 +- go.sum | 4 ++-- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 595231d507..eaf1e7bbd3 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -12,6 +12,8 @@ In this release, we are introducing validations for the IBC transfer message rec - Maximum length for IBC transfer memo field: 32'768 characters - Maximum length for IBC transfer receiver address field: 2'048 characters +- Bump `ibc-go` to v7.5.1. + ### Validators diff --git a/go.mod b/go.mod index ef62c895a9..73cc0bc4db 100644 --- a/go.mod +++ b/go.mod @@ -16,7 +16,7 @@ require ( github.com/cosmos/go-bip39 v1.0.0 github.com/cosmos/gogoproto v1.4.10 // NOTE: v1.4.11+ is not compatible with sdk v0.47 github.com/cosmos/ibc-apps/middleware/packet-forward-middleware/v7 v7.1.3 - github.com/cosmos/ibc-go/v7 v7.4.0 + github.com/cosmos/ibc-go/v7 v7.5.1 github.com/golang/mock v1.6.0 github.com/golang/protobuf v1.5.4 github.com/gorilla/mux v1.8.1 diff --git a/go.sum b/go.sum index 9d2052a488..9ac3e887c8 100644 --- a/go.sum +++ b/go.sum @@ -419,8 +419,8 @@ github.com/cosmos/iavl v0.20.1 h1:rM1kqeG3/HBT85vsZdoSNsehciqUQPWrR4BYmqE2+zg= github.com/cosmos/iavl v0.20.1/go.mod h1:WO7FyvaZJoH65+HFOsDir7xU9FWk2w9cHXNW1XHcl7A= github.com/cosmos/ibc-apps/middleware/packet-forward-middleware/v7 v7.1.3 h1:MZGDMETv72suFpTAD6VPGqSIm1FJcChtk2HmVh9D+Bo= github.com/cosmos/ibc-apps/middleware/packet-forward-middleware/v7 v7.1.3/go.mod h1:UvDmcGIWJPIytq+Q78/ff5NTOsuX/7IrNgEugTW5i0s= -github.com/cosmos/ibc-go/v7 v7.4.0 h1:8FqYMptvksgMvlbN4UW9jFxTXzsPyfAzEZurujXac8M= -github.com/cosmos/ibc-go/v7 v7.4.0/go.mod h1:L/KaEhzV5TGUCTfGysVgMBQtl5Dm7hHitfpk+GIeoAo= +github.com/cosmos/ibc-go/v7 v7.5.1 h1:KqS/g7W7EMX1OtOvufS8lWMJibOKpdgtNNZIU6fAgVU= +github.com/cosmos/ibc-go/v7 v7.5.1/go.mod h1:ktFg5GvKOyrGCqTWtW7Grj5uweU4ZapxrNeVS1CLLbo= github.com/cosmos/ics23/go v0.10.0 h1:iXqLLgp2Lp+EdpIuwXTYIQU+AiHj9mOC2X9ab++bZDM= github.com/cosmos/ics23/go v0.10.0/go.mod h1:ZfJSmng/TBNTBkFemHHHj5YY7VAU/MBU980F4VU1NG0= github.com/cosmos/keyring v1.2.0 h1:8C1lBP9xhImmIabyXW4c3vFjjLiBdGCmfLUfeZlV1Yo= From ec60ce1cc17eda3e3cf3da7b1082bac3d5077334 Mon Sep 17 00:00:00 2001 From: Robert Zaremba Date: Tue, 18 Jun 2024 15:58:26 +0200 Subject: [PATCH 2/4] matrix --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 29b947adb7..bac47a2ec5 100644 --- a/README.md +++ b/README.md @@ -64,7 +64,7 @@ See [Release procedure](CONTRIBUTING.md#release-procedure) for more information | v6.2.x | ✓ | v0.47.6+ | v7.2.x | --- | umee/v2.3.0 | --- | v1.5.0 | | v6.3.x | ✓ | v0.47.7+ | v7.3.1 | --- | umee/v2.3.0+ | --- | v1.5.0 | | v6.4.x | x | v0.47.10+ | v7.3.2 | --- | umee/v2.4.1+ | --- | v1.5.2 | -| v6.5.x | x | v0.47.10+ | v7.3.2 | --- | umee/v2.4.3+ | --- | v1.5.2 | +| v6.5.x | x | v0.47.11+ | v7.5.1 | --- | umee/v2.4.3+ | --- | v1.5.2 | #### Price Feeder From b720edf743f902582f7c22664933f9aa37a539fe Mon Sep 17 00:00:00 2001 From: Sai Kumar Date: Tue, 18 Jun 2024 23:23:47 +0530 Subject: [PATCH 3/4] fix: add grpc query router to ica keeper --- app/app.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/app.go b/app/app.go index f6569b9a9b..10c977951f 100644 --- a/app/app.go +++ b/app/app.go @@ -530,12 +530,14 @@ func New( app.UpgradeKeeper, app.ScopedIBCKeeper, ) + app.ICAHostKeeper = icahostkeeper.NewKeeper( appCodec, keys[icahosttypes.StoreKey], app.GetSubspace(icahosttypes.SubModuleName), app.IBCKeeper.ChannelKeeper, // app.IBCFeeKeeper, // use ics29 fee as ics4Wrapper in middleware stack app.IBCKeeper.ChannelKeeper, &app.IBCKeeper.PortKeeper, app.AccountKeeper, scopedICAHostKeeper, app.MsgServiceRouter(), ) + app.ICAHostKeeper.WithQueryRouter(app.GRPCQueryRouter()) // UIbcQuotaKeeper implements ibcporttypes.ICS4Wrapper app.UIbcQuotaKeeperB = uibcquota.NewKeeperBuilder( From bce39e1cf6b1ad902f062bc2bd16a59c980a12a3 Mon Sep 17 00:00:00 2001 From: Sai Kumar Date: Tue, 18 Jun 2024 23:29:44 +0530 Subject: [PATCH 4/4] fix the readme lint --- RELEASE_NOTES.md | 1 - 1 file changed, 1 deletion(-) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index eaf1e7bbd3..6278fc0fb3 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -14,7 +14,6 @@ In this release, we are introducing validations for the IBC transfer message rec - Maximum length for IBC transfer receiver address field: 2'048 characters - Bump `ibc-go` to v7.5.1. - ### Validators **Upgrade Title** (for Cosmovisor): **v6.5**.