From c2d9b3a2eadaeba9b547224df0f206a7ec2ce920 Mon Sep 17 00:00:00 2001 From: Julien Robert Date: Wed, 13 Sep 2023 21:29:12 +0200 Subject: [PATCH 1/8] chore: prepare v0.50.0-rc.1 --- CHANGELOG.md | 25 ++++++++----------------- RELEASE_NOTES.md | 5 ++++- 2 files changed, 12 insertions(+), 18 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8c62b7ddeaa..72e86a8a2a1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -38,27 +38,12 @@ Ref: https://keepachangelog.com/en/1.0.0/ ## [Unreleased] +## [v0.50.0-rc.1](https://github.com/cosmos/cosmos-sdk/releases/tag/v0.50.0-rc.1) - 2023-08-18 + ### Features * (baseapp & types) [#17712](https://github.com/cosmos/cosmos-sdk/pull/17712) Introduce `PreBlock`, which runs before begin blocker other modules, and allows to modify consensus parameters, and the changes are visible to the following state machine logics. Additionally it can be used for vote extensions. -* (x/bank) [#14224](https://github.com/cosmos/cosmos-sdk/pull/14224) Allow injection of restrictions on transfers using `AppendSendRestriction` or `PrependSendRestriction`. * (genutil) [#17571](https://github.com/cosmos/cosmos-sdk/pull/17571) Allow creation of `AppGenesis` without a file lookup. - -### Improvments - -* (types/module) [#17554](https://github.com/cosmos/cosmos-sdk/pull/17554) Introduce `HasABCIGenesis` which is implemented by a module only when a validatorset update needs to be returned. -* (baseapp) [#17667](https://github.com/cosmos/cosmos-sdk/pull/17667) Close databases opened by SDK in `baseApp.Close()`. - -### Bug Fixes - -* (baseapp) [#17518](https://github.com/cosmos/cosmos-sdk/pull/17518) Utilizing voting power from vote extensions (CometBFT) instead of the current bonded tokens (x/staking) to determine if a set of vote extensions are valid. -* (config) [#17649](https://github.com/cosmos/cosmos-sdk/pull/17649) Fix `mempool.max-txs` configuration is invalid in `app.config`. -* (mempool) [#17668](https://github.com/cosmos/cosmos-sdk/pull/17668) Fix `PriorityNonceIterator.Next()` nil pointer ref for min priority at the end of iteration. - -## [v0.50.0-rc.0](https://github.com/cosmos/cosmos-sdk/releases/tag/v0.50.0-rc.0) - 2023-08-18 - -### Features - * (keyring) [#17424](https://github.com/cosmos/cosmos-sdk/pull/17424) Allows to import private keys encoded in hex. * (client/rpc) [#17274](https://github.com/cosmos/cosmos-sdk/pull/17274) Add `QueryEventForTxCmd` cmd to subscribe and wait event for transaction by hash. * (codec) [#17042](https://github.com/cosmos/cosmos-sdk/pull/17042) Add `CollValueV2` which supports encoding of protov2 messages in collections. @@ -94,10 +79,13 @@ Ref: https://keepachangelog.com/en/1.0.0/ * (x/gov) [#14373](https://github.com/cosmos/cosmos-sdk/pull/14373) Add new proto field `constitution` of type `string` to gov module genesis state, which allows chain builders to lay a strong foundation by specifying purpose. * (client) [#14342](https://github.com/cosmos/cosmos-sdk/pull/14342) Add ` config` command is now a sub-command, for setting, getting and migrating Cosmos SDK configuration files. * (x/distribution) [#14322](https://github.com/cosmos/cosmos-sdk/pull/14322) Introduce a new gRPC message handler, `DepositValidatorRewardsPool`, that allows explicit funding of a validator's reward pool. +* (x/bank) [#14224](https://github.com/cosmos/cosmos-sdk/pull/14224) Allow injection of restrictions on transfers using `AppendSendRestriction` or `PrependSendRestriction`. * [#13473](https://github.com/cosmos/cosmos-sdk/pull/13473) ADR-038: Go plugin system proposal. ### Improvements +* (baseapp) [#17667](https://github.com/cosmos/cosmos-sdk/pull/17667) Close databases opened by SDK in `baseApp.Close()`. +* (types/module) [#17554](https://github.com/cosmos/cosmos-sdk/pull/17554) Introduce `HasABCIGenesis` which is implemented by a module only when a validatorset update needs to be returned. * (cli) [#17389](https://github.com/cosmos/cosmos-sdk/pull/17389) gRPC CometBFT commands have been added under ` q consensus comet`. CometBFT commands placement in the SDK has been simplified. See the exhaustive list below. * `client/rpc.StatusCommand()` is now at `server.StatusCommand()` * (x/group, x/gov) [#17220](https://github.com/cosmos/cosmos-sdk/pull/17220) Add `--skip-metadata` flag in `draft-proposal` to skip metadata prompt. @@ -349,6 +337,9 @@ Ref: https://keepachangelog.com/en/1.0.0/ ### Bug Fixes +* (mempool) [#17668](https://github.com/cosmos/cosmos-sdk/pull/17668) Fix `PriorityNonceIterator.Next()` nil pointer ref for min priority at the end of iteration. +* (config) [#17649](https://github.com/cosmos/cosmos-sdk/pull/17649) Fix `mempool.max-txs` configuration is invalid in `app.config`. +* (baseapp) [#17518](https://github.com/cosmos/cosmos-sdk/pull/17518) Utilizing voting power from vote extensions (CometBFT) instead of the current bonded tokens (x/staking) to determine if a set of vote extensions are valid. * (runtime) [#17284](https://github.com/cosmos/cosmos-sdk/pull/17284) Properly allow to combine depinject-enabled modules and non-depinject-enabled modules in app v2. * (baseapp) [#17251](https://github.com/cosmos/cosmos-sdk/pull/17251) VerifyVoteExtensions and ExtendVote initialize their own contexts/states, allowing VerifyVoteExtensions being called without ExtendVote. * (x/distribution) [#17236](https://github.com/cosmos/cosmos-sdk/pull/17236) Using "validateCommunityTax" in "Params.ValidateBasic", preventing panic when field "CommunityTax" is nil. diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index c30b96d2afb..3a44d1982ef 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,7 +1,10 @@ -# Cosmos SDK v0.50.0-rc.0 Release Notes +# Cosmos SDK v0.50.0-rc.1 Release Notes There are no release notes for pre-releases. +If you have started integrating with v0.50.0-rc.0, this release candidate contains one breaking change. +This is contrary to our usual policy of not introducing breaking changes in release candidates, but we believe this change is necessary to ensure a smooth upgrade from previous SDK version to v0.50.0. Additionally, it gives a better UX for users integrating vote extensions. Read more about the change [here](https://github.com/cosmos/cosmos-sdk/blob/main/docs/architecture/adr-068-preblock.md). + Please see the [CHANGELOG](https://github.com/cosmos/cosmos-sdk/blob/release/v0.50.x/CHANGELOG.md) for an exhaustive list of changes. Refer to the [UPGRADING.md](https://github.com/cosmos/cosmos-sdk/blob/release/v0.50.x/UPGRADING.md) for upgrading your application. From 8e79d61a39a4cdb6e130c9488c4084db3d6d306b Mon Sep 17 00:00:00 2001 From: Julien Robert Date: Wed, 13 Sep 2023 21:30:13 +0200 Subject: [PATCH 2/8] update date --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 72e86a8a2a1..97042c09e73 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -38,7 +38,7 @@ Ref: https://keepachangelog.com/en/1.0.0/ ## [Unreleased] -## [v0.50.0-rc.1](https://github.com/cosmos/cosmos-sdk/releases/tag/v0.50.0-rc.1) - 2023-08-18 +## [v0.50.0-rc.1](https://github.com/cosmos/cosmos-sdk/releases/tag/v0.50.0-rc.1) - 2023-09-15 ### Features From 20294d9fc118a54ae797dbb6aed53b9ab14aafd7 Mon Sep 17 00:00:00 2001 From: Julien Robert Date: Wed, 13 Sep 2023 21:34:08 +0200 Subject: [PATCH 3/8] updates --- RELEASE_NOTES.md | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 3a44d1982ef..3e8ea136e0e 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -2,10 +2,14 @@ There are no release notes for pre-releases. -If you have started integrating with v0.50.0-rc.0, this release candidate contains one breaking change. -This is contrary to our usual policy of not introducing breaking changes in release candidates, but we believe this change is necessary to ensure a smooth upgrade from previous SDK version to v0.50.0. Additionally, it gives a better UX for users integrating vote extensions. Read more about the change [here](https://github.com/cosmos/cosmos-sdk/blob/main/docs/architecture/adr-068-preblock.md). - Please see the [CHANGELOG](https://github.com/cosmos/cosmos-sdk/blob/release/v0.50.x/CHANGELOG.md) for an exhaustive list of changes. Refer to the [UPGRADING.md](https://github.com/cosmos/cosmos-sdk/blob/release/v0.50.x/UPGRADING.md) for upgrading your application. Full Commit History: https://github.com/cosmos/cosmos-sdk/compare/release/v0.47.x...release/v0.50.x + +## Upgrading from v0.50.0-rc.z-0 + +If you have started integrating with v0.50.0-rc.0, this release candidate contains one breaking change. +This is contrary to our usual policy of not introducing breaking changes in release candidates, but we believe this change is necessary to ensure a smooth upgrade from previous SDK version to v0.50.0. Additionally, it gives a better UX for users integrating vote extensions. Read more about the change [here](https://github.com/cosmos/cosmos-sdk/blob/main/docs/architecture/adr-068-preblock.md). + +Update your app.go / app_config.go as instructed in the [UPGRADING.md](https://github.com/cosmos/cosmos-sdk/blob/release/v0.50.x/UPGRADING.md#set-preblocker). From 080a01c29df29f57553869e068021cc5f86d4a87 Mon Sep 17 00:00:00 2001 From: Julien Robert Date: Fri, 15 Sep 2023 10:02:49 +0200 Subject: [PATCH 4/8] updates --- RELEASE_NOTES.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 3e8ea136e0e..e9030145d4c 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -7,9 +7,11 @@ Refer to the [UPGRADING.md](https://github.com/cosmos/cosmos-sdk/blob/release/v0 Full Commit History: https://github.com/cosmos/cosmos-sdk/compare/release/v0.47.x...release/v0.50.x -## Upgrading from v0.50.0-rc.z-0 +## Upgrading from v0.50.0-rc.0 If you have started integrating with v0.50.0-rc.0, this release candidate contains one breaking change. This is contrary to our usual policy of not introducing breaking changes in release candidates, but we believe this change is necessary to ensure a smooth upgrade from previous SDK version to v0.50.0. Additionally, it gives a better UX for users integrating vote extensions. Read more about the change [here](https://github.com/cosmos/cosmos-sdk/blob/main/docs/architecture/adr-068-preblock.md). Update your app.go / app_config.go as instructed in the [UPGRADING.md](https://github.com/cosmos/cosmos-sdk/blob/release/v0.50.x/UPGRADING.md#set-preblocker). + +Additionally, if you were using `baseapp.SetPreFinalizeBlockHook` in v0.50.0-rc.0, you should now use `baseapp.SetPreBlocker` for having the same functionality. From f8940c9a9a7775d193d972d80de67ac5b7b424f7 Mon Sep 17 00:00:00 2001 From: Julien Robert Date: Fri, 15 Sep 2023 10:36:52 +0200 Subject: [PATCH 5/8] exactly one month later --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 97042c09e73..1fa119bc69d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -38,7 +38,7 @@ Ref: https://keepachangelog.com/en/1.0.0/ ## [Unreleased] -## [v0.50.0-rc.1](https://github.com/cosmos/cosmos-sdk/releases/tag/v0.50.0-rc.1) - 2023-09-15 +## [v0.50.0-rc.1](https://github.com/cosmos/cosmos-sdk/releases/tag/v0.50.0-rc.1) - 2023-09-18 ### Features From cdf1cc0525f2e8e4cb32f1b0bd57c592e7e713b5 Mon Sep 17 00:00:00 2001 From: Julien Robert Date: Fri, 15 Sep 2023 10:40:51 +0200 Subject: [PATCH 6/8] latest commit from release/v0.50.x in simapp --- simapp/go.mod | 14 +++++++------- simapp/go.sum | 28 ++++++++++++++-------------- tests/go.mod | 12 ++++++------ tests/go.sum | 24 ++++++++++++------------ 4 files changed, 39 insertions(+), 39 deletions(-) diff --git a/simapp/go.mod b/simapp/go.mod index a643bd13979..87b963a106e 100644 --- a/simapp/go.mod +++ b/simapp/go.mod @@ -4,20 +4,20 @@ go 1.21 require ( cosmossdk.io/api v0.7.1-0.20230820170544-1bd37053e0c0 - cosmossdk.io/client/v2 v2.0.0-20230913132541-a4de97633356 + cosmossdk.io/client/v2 v2.0.0-20230915081423-4955776845b1 cosmossdk.io/collections v0.4.0 // indirect cosmossdk.io/core v0.11.0 cosmossdk.io/depinject v1.0.0-alpha.4 cosmossdk.io/log v1.2.1 cosmossdk.io/math v1.1.2 cosmossdk.io/store v1.0.0-rc.0 - cosmossdk.io/tools/confix v0.0.0-20230913185058-9b5a203d35bc - cosmossdk.io/x/circuit v0.0.0-20230913185058-9b5a203d35bc - cosmossdk.io/x/evidence v0.0.0-20230913185058-9b5a203d35bc - cosmossdk.io/x/feegrant v0.0.0-20230913185058-9b5a203d35bc - cosmossdk.io/x/nft v0.0.0-20230913185058-9b5a203d35bc + cosmossdk.io/tools/confix v0.0.0-20230915081423-4955776845b1 + cosmossdk.io/x/circuit v0.0.0-20230915081423-4955776845b1 + cosmossdk.io/x/evidence v0.0.0-20230915081423-4955776845b1 + cosmossdk.io/x/feegrant v0.0.0-20230915081423-4955776845b1 + cosmossdk.io/x/nft v0.0.0-20230915081423-4955776845b1 cosmossdk.io/x/tx v0.10.0 - cosmossdk.io/x/upgrade v0.0.0-20230915075604-076dc1ee9619 + cosmossdk.io/x/upgrade v0.0.0-20230915081423-4955776845b1 github.com/cometbft/cometbft v0.38.0 github.com/cosmos/cosmos-db v1.0.0 // this version is not used as it is always replaced by the latest Cosmos SDK version diff --git a/simapp/go.sum b/simapp/go.sum index 459eb0112f4..b747e973d3f 100644 --- a/simapp/go.sum +++ b/simapp/go.sum @@ -189,8 +189,8 @@ cloud.google.com/go/workflows v1.6.0/go.mod h1:6t9F5h/unJz41YqfBmqSASJSXccBLtD1V cloud.google.com/go/workflows v1.7.0/go.mod h1:JhSrZuVZWuiDfKEFxU0/F1PQjmpnpcoISEXH2bcHC3M= cosmossdk.io/api v0.7.1-0.20230820170544-1bd37053e0c0 h1:z1aCAqEXi5fzC5tjanWnkP/zhhuWTX17IiNKxLvXFcw= cosmossdk.io/api v0.7.1-0.20230820170544-1bd37053e0c0/go.mod h1:h4YT2OHIBT/YIwWrc5L+4dY05ZIqvo89zs6m7j4/RSk= -cosmossdk.io/client/v2 v2.0.0-20230913132541-a4de97633356 h1:uOD69eQuITHL+UXCbyXPit+MqNzo1tfhZwOEezphUbc= -cosmossdk.io/client/v2 v2.0.0-20230913132541-a4de97633356/go.mod h1:iqp9sDP2SihiZ1mC/E4tbo4YQFcrWn3t2Zo12bU3EvM= +cosmossdk.io/client/v2 v2.0.0-20230915081423-4955776845b1 h1:1b9Gjw1Z1MgGbpWvkDP2LexrK4WA1N10zGwyuPa0ji4= +cosmossdk.io/client/v2 v2.0.0-20230915081423-4955776845b1/go.mod h1:e7vQAZ7+SGgl+Q8JQu3RQZWFmeruY+TIm4hoOdUa9e0= cosmossdk.io/collections v0.4.0 h1:PFmwj2W8szgpD5nOd8GWH6AbYNi1f2J6akWXJ7P5t9s= cosmossdk.io/collections v0.4.0/go.mod h1:oa5lUING2dP+gdDquow+QjlF45eL1t4TJDypgGd+tv0= cosmossdk.io/core v0.11.0 h1:vtIafqUi+1ZNAE/oxLOQQ7Oek2n4S48SWLG8h/+wdbo= @@ -205,20 +205,20 @@ cosmossdk.io/math v1.1.2 h1:ORZetZCTyWkI5GlZ6CZS28fMHi83ZYf+A2vVnHNzZBM= cosmossdk.io/math v1.1.2/go.mod h1:l2Gnda87F0su8a/7FEKJfFdJrM0JZRXQaohlgJeyQh0= cosmossdk.io/store v1.0.0-rc.0 h1:9DwOjuUYxDtYxn/REkTxGQAmxlIGfRroB35MQ8TrxF4= cosmossdk.io/store v1.0.0-rc.0/go.mod h1:FtBDOJmwtOZfmKKF65bKZbTYgS3bDNjjo3nP76dAegk= -cosmossdk.io/tools/confix v0.0.0-20230913185058-9b5a203d35bc h1:+8XcN/fVm2/3RCxmnCli9kURKWtJexm3dpeGGAujBPQ= -cosmossdk.io/tools/confix v0.0.0-20230913185058-9b5a203d35bc/go.mod h1:BjHnrWAKPImcU/q23cFQoP+u22WhylkDz2JUL4r0Nd8= -cosmossdk.io/x/circuit v0.0.0-20230913185058-9b5a203d35bc h1:zF3zmTxaRpWbUTQzVdqFiuz0T3OdYnQplIdzVjEU36Q= -cosmossdk.io/x/circuit v0.0.0-20230913185058-9b5a203d35bc/go.mod h1:QRG1bAlYXqOlRz+hImZ3mXlF1sSsLJneAO9luIoh5O4= -cosmossdk.io/x/evidence v0.0.0-20230913185058-9b5a203d35bc h1:vDUvyyrwB4lTyIw8eP2wbFmRkxj1CPaq8C86OvN1fa8= -cosmossdk.io/x/evidence v0.0.0-20230913185058-9b5a203d35bc/go.mod h1:18Ty8XADqWaCtT4umY0VIsmQfezH6bc2Mj8dvFI1cic= -cosmossdk.io/x/feegrant v0.0.0-20230913185058-9b5a203d35bc h1:bekdwRzRK3iiKeRaDjF9+K1F/6b8K//Fr7+9wafUak0= -cosmossdk.io/x/feegrant v0.0.0-20230913185058-9b5a203d35bc/go.mod h1:GDfsWm1pdR3YVVS955sBY+OuF3nwShRcFp8D80VShlQ= -cosmossdk.io/x/nft v0.0.0-20230913185058-9b5a203d35bc h1:Jm0ZJ1L6d8YZ6yQydUknNL6Z41gIj/f9PWB77o7NipI= -cosmossdk.io/x/nft v0.0.0-20230913185058-9b5a203d35bc/go.mod h1:B+yw1SVhkUEANcuxisIgiT6cw6re1gGzSsMmY8+lvAI= +cosmossdk.io/tools/confix v0.0.0-20230915081423-4955776845b1 h1:dKfuqrKUXFAbeVfquZEM9lEYISYBUf+LpdhquAeZjzU= +cosmossdk.io/tools/confix v0.0.0-20230915081423-4955776845b1/go.mod h1:h2cGHmzNtVop+8mwx5Yqd/ocT4+4s99Ym/zYSZlP034= +cosmossdk.io/x/circuit v0.0.0-20230915081423-4955776845b1 h1:xywaVTsEcTM4oxBJP5hDp3K1h1mnLim4MOpG9UfCJsI= +cosmossdk.io/x/circuit v0.0.0-20230915081423-4955776845b1/go.mod h1:a9IIf15WJErU/bVBd7/Dah9FxP0ZknHnZ3QSUClJIRI= +cosmossdk.io/x/evidence v0.0.0-20230915081423-4955776845b1 h1:uFTsiy8j+3iLx9DgrjxVzQh/WPf5UIKARGUPhCdjLLU= +cosmossdk.io/x/evidence v0.0.0-20230915081423-4955776845b1/go.mod h1:6CAlsdN08hY1DVq5N+oTS0smTIEPyA9BnYP0XYnoYf8= +cosmossdk.io/x/feegrant v0.0.0-20230915081423-4955776845b1 h1:4LvXH9csvcXXsRoTcgVWW82RTy6ExIt3h/4kYDJmFbs= +cosmossdk.io/x/feegrant v0.0.0-20230915081423-4955776845b1/go.mod h1:rdAv3Xs7VbYnm8yRvqfa2VBL+IKzwjg/SvRknm6M1Io= +cosmossdk.io/x/nft v0.0.0-20230915081423-4955776845b1 h1:zsrdmC3I8gqq5tcM7pjQ9wGdtRIX2v6svoltbVem0XE= +cosmossdk.io/x/nft v0.0.0-20230915081423-4955776845b1/go.mod h1:3WwhUkyjxRHSRmKviDdLDQBTmkcHZ+01Xg2dZfXyDRs= cosmossdk.io/x/tx v0.10.0 h1:LxWF/hksVDbeQmFj4voLM5ZCHyVZ1cCNIqKenfH9plc= cosmossdk.io/x/tx v0.10.0/go.mod h1:MKo9/b5wsoL8dd9y9pvD2yOP1CMvzHIWYxi1l2oLPFo= -cosmossdk.io/x/upgrade v0.0.0-20230915075604-076dc1ee9619 h1:3wgUsnj/ElYA+B33h6Yn1KxWvB4hPFa+K90fw9gRO9M= -cosmossdk.io/x/upgrade v0.0.0-20230915075604-076dc1ee9619/go.mod h1:bqexnYfkwMCqbXXN4SprKS9N7cTwT1lFholB7UQhoDU= +cosmossdk.io/x/upgrade v0.0.0-20230915081423-4955776845b1 h1:J4TfzvUTumt2/dHTxBvYCTzx/KwlX7t8HmUjDXrTzA8= +cosmossdk.io/x/upgrade v0.0.0-20230915081423-4955776845b1/go.mod h1:bqexnYfkwMCqbXXN4SprKS9N7cTwT1lFholB7UQhoDU= dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod h1:H6x//7gZCb22OMCxBHrMx7a5I7Hp++hsVxbQ4BYO7hU= filippo.io/edwards25519 v1.0.0 h1:0wAIcmJUqRdI8IJ/3eGi5/HwXZWPujYXXlkrQogz0Ek= filippo.io/edwards25519 v1.0.0/go.mod h1:N1IkdkCkiLB6tki+MYJoSx2JTY9NUlxZE7eHn5EwJns= diff --git a/tests/go.mod b/tests/go.mod index 9b7a44a4abf..f1cc4c127a9 100644 --- a/tests/go.mod +++ b/tests/go.mod @@ -11,11 +11,11 @@ require ( cosmossdk.io/math v1.1.2 cosmossdk.io/simapp v0.0.0-20230620040119-e078f1a49e8b cosmossdk.io/store v1.0.0-rc.0 - cosmossdk.io/x/evidence v0.0.0-20230913185058-9b5a203d35bc - cosmossdk.io/x/feegrant v0.0.0-20230913185058-9b5a203d35bc - cosmossdk.io/x/nft v0.0.0-20230913185058-9b5a203d35bc // indirect + cosmossdk.io/x/evidence v0.0.0-20230915081423-4955776845b1 + cosmossdk.io/x/feegrant v0.0.0-20230915081423-4955776845b1 + cosmossdk.io/x/nft v0.0.0-20230915081423-4955776845b1 // indirect cosmossdk.io/x/tx v0.10.0 - cosmossdk.io/x/upgrade v0.0.0-20230915075604-076dc1ee9619 + cosmossdk.io/x/upgrade v0.0.0-20230915081423-4955776845b1 github.com/cometbft/cometbft v0.38.0 github.com/cosmos/cosmos-db v1.0.0 github.com/cosmos/cosmos-proto v1.0.0-beta.3 @@ -37,9 +37,9 @@ require ( cloud.google.com/go/compute/metadata v0.2.3 // indirect cloud.google.com/go/iam v1.1.1 // indirect cloud.google.com/go/storage v1.30.1 // indirect - cosmossdk.io/client/v2 v2.0.0-20230913132541-a4de97633356 // indirect + cosmossdk.io/client/v2 v2.0.0-20230915081423-4955776845b1 // indirect cosmossdk.io/collections v0.4.0 // indirect - cosmossdk.io/x/circuit v0.0.0-20230913185058-9b5a203d35bc // indirect + cosmossdk.io/x/circuit v0.0.0-20230915081423-4955776845b1 // indirect filippo.io/edwards25519 v1.0.0 // indirect github.com/99designs/go-keychain v0.0.0-20191008050251-8e49817e8af4 // indirect github.com/99designs/keyring v1.2.1 // indirect diff --git a/tests/go.sum b/tests/go.sum index fadcf310624..ce915d6130d 100644 --- a/tests/go.sum +++ b/tests/go.sum @@ -189,8 +189,8 @@ cloud.google.com/go/workflows v1.6.0/go.mod h1:6t9F5h/unJz41YqfBmqSASJSXccBLtD1V cloud.google.com/go/workflows v1.7.0/go.mod h1:JhSrZuVZWuiDfKEFxU0/F1PQjmpnpcoISEXH2bcHC3M= cosmossdk.io/api v0.7.1-0.20230820170544-1bd37053e0c0 h1:z1aCAqEXi5fzC5tjanWnkP/zhhuWTX17IiNKxLvXFcw= cosmossdk.io/api v0.7.1-0.20230820170544-1bd37053e0c0/go.mod h1:h4YT2OHIBT/YIwWrc5L+4dY05ZIqvo89zs6m7j4/RSk= -cosmossdk.io/client/v2 v2.0.0-20230913132541-a4de97633356 h1:uOD69eQuITHL+UXCbyXPit+MqNzo1tfhZwOEezphUbc= -cosmossdk.io/client/v2 v2.0.0-20230913132541-a4de97633356/go.mod h1:iqp9sDP2SihiZ1mC/E4tbo4YQFcrWn3t2Zo12bU3EvM= +cosmossdk.io/client/v2 v2.0.0-20230915081423-4955776845b1 h1:1b9Gjw1Z1MgGbpWvkDP2LexrK4WA1N10zGwyuPa0ji4= +cosmossdk.io/client/v2 v2.0.0-20230915081423-4955776845b1/go.mod h1:e7vQAZ7+SGgl+Q8JQu3RQZWFmeruY+TIm4hoOdUa9e0= cosmossdk.io/collections v0.4.0 h1:PFmwj2W8szgpD5nOd8GWH6AbYNi1f2J6akWXJ7P5t9s= cosmossdk.io/collections v0.4.0/go.mod h1:oa5lUING2dP+gdDquow+QjlF45eL1t4TJDypgGd+tv0= cosmossdk.io/core v0.11.0 h1:vtIafqUi+1ZNAE/oxLOQQ7Oek2n4S48SWLG8h/+wdbo= @@ -205,18 +205,18 @@ cosmossdk.io/math v1.1.2 h1:ORZetZCTyWkI5GlZ6CZS28fMHi83ZYf+A2vVnHNzZBM= cosmossdk.io/math v1.1.2/go.mod h1:l2Gnda87F0su8a/7FEKJfFdJrM0JZRXQaohlgJeyQh0= cosmossdk.io/store v1.0.0-rc.0 h1:9DwOjuUYxDtYxn/REkTxGQAmxlIGfRroB35MQ8TrxF4= cosmossdk.io/store v1.0.0-rc.0/go.mod h1:FtBDOJmwtOZfmKKF65bKZbTYgS3bDNjjo3nP76dAegk= -cosmossdk.io/x/circuit v0.0.0-20230913185058-9b5a203d35bc h1:zF3zmTxaRpWbUTQzVdqFiuz0T3OdYnQplIdzVjEU36Q= -cosmossdk.io/x/circuit v0.0.0-20230913185058-9b5a203d35bc/go.mod h1:QRG1bAlYXqOlRz+hImZ3mXlF1sSsLJneAO9luIoh5O4= -cosmossdk.io/x/evidence v0.0.0-20230913185058-9b5a203d35bc h1:vDUvyyrwB4lTyIw8eP2wbFmRkxj1CPaq8C86OvN1fa8= -cosmossdk.io/x/evidence v0.0.0-20230913185058-9b5a203d35bc/go.mod h1:18Ty8XADqWaCtT4umY0VIsmQfezH6bc2Mj8dvFI1cic= -cosmossdk.io/x/feegrant v0.0.0-20230913185058-9b5a203d35bc h1:bekdwRzRK3iiKeRaDjF9+K1F/6b8K//Fr7+9wafUak0= -cosmossdk.io/x/feegrant v0.0.0-20230913185058-9b5a203d35bc/go.mod h1:GDfsWm1pdR3YVVS955sBY+OuF3nwShRcFp8D80VShlQ= -cosmossdk.io/x/nft v0.0.0-20230913185058-9b5a203d35bc h1:Jm0ZJ1L6d8YZ6yQydUknNL6Z41gIj/f9PWB77o7NipI= -cosmossdk.io/x/nft v0.0.0-20230913185058-9b5a203d35bc/go.mod h1:B+yw1SVhkUEANcuxisIgiT6cw6re1gGzSsMmY8+lvAI= +cosmossdk.io/x/circuit v0.0.0-20230915081423-4955776845b1 h1:xywaVTsEcTM4oxBJP5hDp3K1h1mnLim4MOpG9UfCJsI= +cosmossdk.io/x/circuit v0.0.0-20230915081423-4955776845b1/go.mod h1:a9IIf15WJErU/bVBd7/Dah9FxP0ZknHnZ3QSUClJIRI= +cosmossdk.io/x/evidence v0.0.0-20230915081423-4955776845b1 h1:uFTsiy8j+3iLx9DgrjxVzQh/WPf5UIKARGUPhCdjLLU= +cosmossdk.io/x/evidence v0.0.0-20230915081423-4955776845b1/go.mod h1:6CAlsdN08hY1DVq5N+oTS0smTIEPyA9BnYP0XYnoYf8= +cosmossdk.io/x/feegrant v0.0.0-20230915081423-4955776845b1 h1:4LvXH9csvcXXsRoTcgVWW82RTy6ExIt3h/4kYDJmFbs= +cosmossdk.io/x/feegrant v0.0.0-20230915081423-4955776845b1/go.mod h1:rdAv3Xs7VbYnm8yRvqfa2VBL+IKzwjg/SvRknm6M1Io= +cosmossdk.io/x/nft v0.0.0-20230915081423-4955776845b1 h1:zsrdmC3I8gqq5tcM7pjQ9wGdtRIX2v6svoltbVem0XE= +cosmossdk.io/x/nft v0.0.0-20230915081423-4955776845b1/go.mod h1:3WwhUkyjxRHSRmKviDdLDQBTmkcHZ+01Xg2dZfXyDRs= cosmossdk.io/x/tx v0.10.0 h1:LxWF/hksVDbeQmFj4voLM5ZCHyVZ1cCNIqKenfH9plc= cosmossdk.io/x/tx v0.10.0/go.mod h1:MKo9/b5wsoL8dd9y9pvD2yOP1CMvzHIWYxi1l2oLPFo= -cosmossdk.io/x/upgrade v0.0.0-20230915075604-076dc1ee9619 h1:3wgUsnj/ElYA+B33h6Yn1KxWvB4hPFa+K90fw9gRO9M= -cosmossdk.io/x/upgrade v0.0.0-20230915075604-076dc1ee9619/go.mod h1:bqexnYfkwMCqbXXN4SprKS9N7cTwT1lFholB7UQhoDU= +cosmossdk.io/x/upgrade v0.0.0-20230915081423-4955776845b1 h1:J4TfzvUTumt2/dHTxBvYCTzx/KwlX7t8HmUjDXrTzA8= +cosmossdk.io/x/upgrade v0.0.0-20230915081423-4955776845b1/go.mod h1:bqexnYfkwMCqbXXN4SprKS9N7cTwT1lFholB7UQhoDU= dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod h1:H6x//7gZCb22OMCxBHrMx7a5I7Hp++hsVxbQ4BYO7hU= filippo.io/edwards25519 v1.0.0 h1:0wAIcmJUqRdI8IJ/3eGi5/HwXZWPujYXXlkrQogz0Ek= filippo.io/edwards25519 v1.0.0/go.mod h1:N1IkdkCkiLB6tki+MYJoSx2JTY9NUlxZE7eHn5EwJns= From 0abd57f5a40deca33847e5d4db06bc140c4ccd7b Mon Sep 17 00:00:00 2001 From: Julien Robert Date: Mon, 18 Sep 2023 16:51:04 +0200 Subject: [PATCH 7/8] updates --- simapp/go.mod | 14 +++++++------- simapp/go.sum | 28 ++++++++++++++-------------- tests/go.mod | 12 ++++++------ tests/go.sum | 24 ++++++++++++------------ 4 files changed, 39 insertions(+), 39 deletions(-) diff --git a/simapp/go.mod b/simapp/go.mod index f5fa7568a47..44f25d0bcf9 100644 --- a/simapp/go.mod +++ b/simapp/go.mod @@ -4,20 +4,20 @@ go 1.21 require ( cosmossdk.io/api v0.7.1 - cosmossdk.io/client/v2 v2.0.0-20230915125841-fb18a3dd99c6 + cosmossdk.io/client/v2 v2.0.0-20230915171831-2196edacb99d cosmossdk.io/collections v0.4.0 // indirect cosmossdk.io/core v0.11.0 cosmossdk.io/depinject v1.0.0-alpha.4 cosmossdk.io/log v1.2.1 cosmossdk.io/math v1.1.2 cosmossdk.io/store v1.0.0-rc.0 - cosmossdk.io/tools/confix v0.0.0-20230915081423-4955776845b1 - cosmossdk.io/x/circuit v0.0.0-20230915081423-4955776845b1 - cosmossdk.io/x/evidence v0.0.0-20230915081423-4955776845b1 - cosmossdk.io/x/feegrant v0.0.0-20230915081423-4955776845b1 - cosmossdk.io/x/nft v0.0.0-20230915081423-4955776845b1 + cosmossdk.io/tools/confix v0.0.0-20230915171831-2196edacb99d + cosmossdk.io/x/circuit v0.0.0-20230915171831-2196edacb99d + cosmossdk.io/x/evidence v0.0.0-20230915171831-2196edacb99d + cosmossdk.io/x/feegrant v0.0.0-20230915171831-2196edacb99d + cosmossdk.io/x/nft v0.0.0-20230915171831-2196edacb99d cosmossdk.io/x/tx v0.10.0 - cosmossdk.io/x/upgrade v0.0.0-20230915081423-4955776845b1 + cosmossdk.io/x/upgrade v0.0.0-20230915171831-2196edacb99d github.com/cometbft/cometbft v0.38.0 github.com/cosmos/cosmos-db v1.0.0 // this version is not used as it is always replaced by the latest Cosmos SDK version diff --git a/simapp/go.sum b/simapp/go.sum index ee8873bfe8b..fb73cc008b1 100644 --- a/simapp/go.sum +++ b/simapp/go.sum @@ -189,8 +189,8 @@ cloud.google.com/go/workflows v1.6.0/go.mod h1:6t9F5h/unJz41YqfBmqSASJSXccBLtD1V cloud.google.com/go/workflows v1.7.0/go.mod h1:JhSrZuVZWuiDfKEFxU0/F1PQjmpnpcoISEXH2bcHC3M= cosmossdk.io/api v0.7.1 h1:PNQ1xN8+/0hj/sSD0ANqjkgfXFys+bZ5L8Hg7uzoUTU= cosmossdk.io/api v0.7.1/go.mod h1:ure9edhcROIHsngavM6mBLilMGFnfjhV/AaYhEMUkdo= -cosmossdk.io/client/v2 v2.0.0-20230915125841-fb18a3dd99c6 h1:6T1iEYlMSa5tV6vh3CL3FHcEJmGAJo+H9ubkeeJk+rM= -cosmossdk.io/client/v2 v2.0.0-20230915125841-fb18a3dd99c6/go.mod h1:Z6vJDBjairMB+RsGR50XlgyBdNjyG6uvdfZ7vGnygnU= +cosmossdk.io/client/v2 v2.0.0-20230915171831-2196edacb99d h1:OBESpz2tmqY591bdRB9hbfDzJXastAi43TgHPwSzJSM= +cosmossdk.io/client/v2 v2.0.0-20230915171831-2196edacb99d/go.mod h1:6kpnEjoEwZIFZkxMPy+/8tKJggRy2OQ6X1LzrrVu8nM= cosmossdk.io/collections v0.4.0 h1:PFmwj2W8szgpD5nOd8GWH6AbYNi1f2J6akWXJ7P5t9s= cosmossdk.io/collections v0.4.0/go.mod h1:oa5lUING2dP+gdDquow+QjlF45eL1t4TJDypgGd+tv0= cosmossdk.io/core v0.11.0 h1:vtIafqUi+1ZNAE/oxLOQQ7Oek2n4S48SWLG8h/+wdbo= @@ -205,20 +205,20 @@ cosmossdk.io/math v1.1.2 h1:ORZetZCTyWkI5GlZ6CZS28fMHi83ZYf+A2vVnHNzZBM= cosmossdk.io/math v1.1.2/go.mod h1:l2Gnda87F0su8a/7FEKJfFdJrM0JZRXQaohlgJeyQh0= cosmossdk.io/store v1.0.0-rc.0 h1:9DwOjuUYxDtYxn/REkTxGQAmxlIGfRroB35MQ8TrxF4= cosmossdk.io/store v1.0.0-rc.0/go.mod h1:FtBDOJmwtOZfmKKF65bKZbTYgS3bDNjjo3nP76dAegk= -cosmossdk.io/tools/confix v0.0.0-20230915081423-4955776845b1 h1:dKfuqrKUXFAbeVfquZEM9lEYISYBUf+LpdhquAeZjzU= -cosmossdk.io/tools/confix v0.0.0-20230915081423-4955776845b1/go.mod h1:h2cGHmzNtVop+8mwx5Yqd/ocT4+4s99Ym/zYSZlP034= -cosmossdk.io/x/circuit v0.0.0-20230915081423-4955776845b1 h1:xywaVTsEcTM4oxBJP5hDp3K1h1mnLim4MOpG9UfCJsI= -cosmossdk.io/x/circuit v0.0.0-20230915081423-4955776845b1/go.mod h1:a9IIf15WJErU/bVBd7/Dah9FxP0ZknHnZ3QSUClJIRI= -cosmossdk.io/x/evidence v0.0.0-20230915081423-4955776845b1 h1:uFTsiy8j+3iLx9DgrjxVzQh/WPf5UIKARGUPhCdjLLU= -cosmossdk.io/x/evidence v0.0.0-20230915081423-4955776845b1/go.mod h1:6CAlsdN08hY1DVq5N+oTS0smTIEPyA9BnYP0XYnoYf8= -cosmossdk.io/x/feegrant v0.0.0-20230915081423-4955776845b1 h1:4LvXH9csvcXXsRoTcgVWW82RTy6ExIt3h/4kYDJmFbs= -cosmossdk.io/x/feegrant v0.0.0-20230915081423-4955776845b1/go.mod h1:rdAv3Xs7VbYnm8yRvqfa2VBL+IKzwjg/SvRknm6M1Io= -cosmossdk.io/x/nft v0.0.0-20230915081423-4955776845b1 h1:zsrdmC3I8gqq5tcM7pjQ9wGdtRIX2v6svoltbVem0XE= -cosmossdk.io/x/nft v0.0.0-20230915081423-4955776845b1/go.mod h1:3WwhUkyjxRHSRmKviDdLDQBTmkcHZ+01Xg2dZfXyDRs= +cosmossdk.io/tools/confix v0.0.0-20230915171831-2196edacb99d h1:T7nuLseJk4KqZTuIZvtCVEgY/UR4lvqrWuYWxy3l67I= +cosmossdk.io/tools/confix v0.0.0-20230915171831-2196edacb99d/go.mod h1:sJU9iqlZxilbg1Ik63S03QTZIYZZ9V+Uok/lu4px3XY= +cosmossdk.io/x/circuit v0.0.0-20230915171831-2196edacb99d h1:EnLrcx7lF15OwwsFr8PwsG2Zqk5D7UpHEsQyhf6t/fk= +cosmossdk.io/x/circuit v0.0.0-20230915171831-2196edacb99d/go.mod h1:atLqPO4esHD8/5VSQYm3tem3u6Ul2Nhv+neBBDsE+zI= +cosmossdk.io/x/evidence v0.0.0-20230915171831-2196edacb99d h1:V4onopNVtraUg0u5m3lCsD2mBmm7kgg1NMJ8VsG7Wfs= +cosmossdk.io/x/evidence v0.0.0-20230915171831-2196edacb99d/go.mod h1:yUgv71a56ZEJu7c8BXWCliDrQ7Ag+FCZ//rYKw9S93U= +cosmossdk.io/x/feegrant v0.0.0-20230915171831-2196edacb99d h1:Cm3KveQ0GkXJvUkBwO530DXO9BmaS3IKKDLmSpWeu2w= +cosmossdk.io/x/feegrant v0.0.0-20230915171831-2196edacb99d/go.mod h1:KcSYzPq6JR8C8yhVYgCGsmRoTpFlLnask4ZlRi7f3h0= +cosmossdk.io/x/nft v0.0.0-20230915171831-2196edacb99d h1:jj/vNw1pOMh3ar/8Yb42jEAi6U+vB/TrPPWrqlkdAMo= +cosmossdk.io/x/nft v0.0.0-20230915171831-2196edacb99d/go.mod h1:Q60Uu6/UsZlACzmGzSkGLSc/U8I6tbEusbqjTE40pvk= cosmossdk.io/x/tx v0.10.0 h1:LxWF/hksVDbeQmFj4voLM5ZCHyVZ1cCNIqKenfH9plc= cosmossdk.io/x/tx v0.10.0/go.mod h1:MKo9/b5wsoL8dd9y9pvD2yOP1CMvzHIWYxi1l2oLPFo= -cosmossdk.io/x/upgrade v0.0.0-20230915081423-4955776845b1 h1:J4TfzvUTumt2/dHTxBvYCTzx/KwlX7t8HmUjDXrTzA8= -cosmossdk.io/x/upgrade v0.0.0-20230915081423-4955776845b1/go.mod h1:bqexnYfkwMCqbXXN4SprKS9N7cTwT1lFholB7UQhoDU= +cosmossdk.io/x/upgrade v0.0.0-20230915171831-2196edacb99d h1:LH8NPa2+yoMFdCTxCFyQUX5zVDip4YDgtg7e0EecDqo= +cosmossdk.io/x/upgrade v0.0.0-20230915171831-2196edacb99d/go.mod h1:+5jCm6Lk/CrQhQvtJFy/tmuLfhQKNMn/U0vwrRz/dxQ= dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod h1:H6x//7gZCb22OMCxBHrMx7a5I7Hp++hsVxbQ4BYO7hU= filippo.io/edwards25519 v1.0.0 h1:0wAIcmJUqRdI8IJ/3eGi5/HwXZWPujYXXlkrQogz0Ek= filippo.io/edwards25519 v1.0.0/go.mod h1:N1IkdkCkiLB6tki+MYJoSx2JTY9NUlxZE7eHn5EwJns= diff --git a/tests/go.mod b/tests/go.mod index ae11da08f88..1848c2204ca 100644 --- a/tests/go.mod +++ b/tests/go.mod @@ -11,11 +11,11 @@ require ( cosmossdk.io/math v1.1.2 cosmossdk.io/simapp v0.0.0-20230620040119-e078f1a49e8b cosmossdk.io/store v1.0.0-rc.0 - cosmossdk.io/x/evidence v0.0.0-20230915081423-4955776845b1 - cosmossdk.io/x/feegrant v0.0.0-20230915081423-4955776845b1 - cosmossdk.io/x/nft v0.0.0-20230915081423-4955776845b1 // indirect + cosmossdk.io/x/evidence v0.0.0-20230915171831-2196edacb99d + cosmossdk.io/x/feegrant v0.0.0-20230915171831-2196edacb99d + cosmossdk.io/x/nft v0.0.0-20230915171831-2196edacb99d // indirect cosmossdk.io/x/tx v0.10.0 - cosmossdk.io/x/upgrade v0.0.0-20230915081423-4955776845b1 + cosmossdk.io/x/upgrade v0.0.0-20230915171831-2196edacb99d github.com/cometbft/cometbft v0.38.0 github.com/cosmos/cosmos-db v1.0.0 github.com/cosmos/cosmos-proto v1.0.0-beta.3 @@ -37,9 +37,9 @@ require ( cloud.google.com/go/compute/metadata v0.2.3 // indirect cloud.google.com/go/iam v1.1.1 // indirect cloud.google.com/go/storage v1.30.1 // indirect - cosmossdk.io/client/v2 v2.0.0-20230915125841-fb18a3dd99c6 // indirect + cosmossdk.io/client/v2 v2.0.0-20230915171831-2196edacb99d // indirect cosmossdk.io/collections v0.4.0 // indirect - cosmossdk.io/x/circuit v0.0.0-20230915081423-4955776845b1 // indirect + cosmossdk.io/x/circuit v0.0.0-20230915171831-2196edacb99d // indirect filippo.io/edwards25519 v1.0.0 // indirect github.com/99designs/go-keychain v0.0.0-20191008050251-8e49817e8af4 // indirect github.com/99designs/keyring v1.2.1 // indirect diff --git a/tests/go.sum b/tests/go.sum index 4d31bd8ba27..1c4ea39103a 100644 --- a/tests/go.sum +++ b/tests/go.sum @@ -189,8 +189,8 @@ cloud.google.com/go/workflows v1.6.0/go.mod h1:6t9F5h/unJz41YqfBmqSASJSXccBLtD1V cloud.google.com/go/workflows v1.7.0/go.mod h1:JhSrZuVZWuiDfKEFxU0/F1PQjmpnpcoISEXH2bcHC3M= cosmossdk.io/api v0.7.1 h1:PNQ1xN8+/0hj/sSD0ANqjkgfXFys+bZ5L8Hg7uzoUTU= cosmossdk.io/api v0.7.1/go.mod h1:ure9edhcROIHsngavM6mBLilMGFnfjhV/AaYhEMUkdo= -cosmossdk.io/client/v2 v2.0.0-20230915125841-fb18a3dd99c6 h1:6T1iEYlMSa5tV6vh3CL3FHcEJmGAJo+H9ubkeeJk+rM= -cosmossdk.io/client/v2 v2.0.0-20230915125841-fb18a3dd99c6/go.mod h1:Z6vJDBjairMB+RsGR50XlgyBdNjyG6uvdfZ7vGnygnU= +cosmossdk.io/client/v2 v2.0.0-20230915171831-2196edacb99d h1:OBESpz2tmqY591bdRB9hbfDzJXastAi43TgHPwSzJSM= +cosmossdk.io/client/v2 v2.0.0-20230915171831-2196edacb99d/go.mod h1:6kpnEjoEwZIFZkxMPy+/8tKJggRy2OQ6X1LzrrVu8nM= cosmossdk.io/collections v0.4.0 h1:PFmwj2W8szgpD5nOd8GWH6AbYNi1f2J6akWXJ7P5t9s= cosmossdk.io/collections v0.4.0/go.mod h1:oa5lUING2dP+gdDquow+QjlF45eL1t4TJDypgGd+tv0= cosmossdk.io/core v0.11.0 h1:vtIafqUi+1ZNAE/oxLOQQ7Oek2n4S48SWLG8h/+wdbo= @@ -205,18 +205,18 @@ cosmossdk.io/math v1.1.2 h1:ORZetZCTyWkI5GlZ6CZS28fMHi83ZYf+A2vVnHNzZBM= cosmossdk.io/math v1.1.2/go.mod h1:l2Gnda87F0su8a/7FEKJfFdJrM0JZRXQaohlgJeyQh0= cosmossdk.io/store v1.0.0-rc.0 h1:9DwOjuUYxDtYxn/REkTxGQAmxlIGfRroB35MQ8TrxF4= cosmossdk.io/store v1.0.0-rc.0/go.mod h1:FtBDOJmwtOZfmKKF65bKZbTYgS3bDNjjo3nP76dAegk= -cosmossdk.io/x/circuit v0.0.0-20230915081423-4955776845b1 h1:xywaVTsEcTM4oxBJP5hDp3K1h1mnLim4MOpG9UfCJsI= -cosmossdk.io/x/circuit v0.0.0-20230915081423-4955776845b1/go.mod h1:a9IIf15WJErU/bVBd7/Dah9FxP0ZknHnZ3QSUClJIRI= -cosmossdk.io/x/evidence v0.0.0-20230915081423-4955776845b1 h1:uFTsiy8j+3iLx9DgrjxVzQh/WPf5UIKARGUPhCdjLLU= -cosmossdk.io/x/evidence v0.0.0-20230915081423-4955776845b1/go.mod h1:6CAlsdN08hY1DVq5N+oTS0smTIEPyA9BnYP0XYnoYf8= -cosmossdk.io/x/feegrant v0.0.0-20230915081423-4955776845b1 h1:4LvXH9csvcXXsRoTcgVWW82RTy6ExIt3h/4kYDJmFbs= -cosmossdk.io/x/feegrant v0.0.0-20230915081423-4955776845b1/go.mod h1:rdAv3Xs7VbYnm8yRvqfa2VBL+IKzwjg/SvRknm6M1Io= -cosmossdk.io/x/nft v0.0.0-20230915081423-4955776845b1 h1:zsrdmC3I8gqq5tcM7pjQ9wGdtRIX2v6svoltbVem0XE= -cosmossdk.io/x/nft v0.0.0-20230915081423-4955776845b1/go.mod h1:3WwhUkyjxRHSRmKviDdLDQBTmkcHZ+01Xg2dZfXyDRs= +cosmossdk.io/x/circuit v0.0.0-20230915171831-2196edacb99d h1:EnLrcx7lF15OwwsFr8PwsG2Zqk5D7UpHEsQyhf6t/fk= +cosmossdk.io/x/circuit v0.0.0-20230915171831-2196edacb99d/go.mod h1:atLqPO4esHD8/5VSQYm3tem3u6Ul2Nhv+neBBDsE+zI= +cosmossdk.io/x/evidence v0.0.0-20230915171831-2196edacb99d h1:V4onopNVtraUg0u5m3lCsD2mBmm7kgg1NMJ8VsG7Wfs= +cosmossdk.io/x/evidence v0.0.0-20230915171831-2196edacb99d/go.mod h1:yUgv71a56ZEJu7c8BXWCliDrQ7Ag+FCZ//rYKw9S93U= +cosmossdk.io/x/feegrant v0.0.0-20230915171831-2196edacb99d h1:Cm3KveQ0GkXJvUkBwO530DXO9BmaS3IKKDLmSpWeu2w= +cosmossdk.io/x/feegrant v0.0.0-20230915171831-2196edacb99d/go.mod h1:KcSYzPq6JR8C8yhVYgCGsmRoTpFlLnask4ZlRi7f3h0= +cosmossdk.io/x/nft v0.0.0-20230915171831-2196edacb99d h1:jj/vNw1pOMh3ar/8Yb42jEAi6U+vB/TrPPWrqlkdAMo= +cosmossdk.io/x/nft v0.0.0-20230915171831-2196edacb99d/go.mod h1:Q60Uu6/UsZlACzmGzSkGLSc/U8I6tbEusbqjTE40pvk= cosmossdk.io/x/tx v0.10.0 h1:LxWF/hksVDbeQmFj4voLM5ZCHyVZ1cCNIqKenfH9plc= cosmossdk.io/x/tx v0.10.0/go.mod h1:MKo9/b5wsoL8dd9y9pvD2yOP1CMvzHIWYxi1l2oLPFo= -cosmossdk.io/x/upgrade v0.0.0-20230915081423-4955776845b1 h1:J4TfzvUTumt2/dHTxBvYCTzx/KwlX7t8HmUjDXrTzA8= -cosmossdk.io/x/upgrade v0.0.0-20230915081423-4955776845b1/go.mod h1:bqexnYfkwMCqbXXN4SprKS9N7cTwT1lFholB7UQhoDU= +cosmossdk.io/x/upgrade v0.0.0-20230915171831-2196edacb99d h1:LH8NPa2+yoMFdCTxCFyQUX5zVDip4YDgtg7e0EecDqo= +cosmossdk.io/x/upgrade v0.0.0-20230915171831-2196edacb99d/go.mod h1:+5jCm6Lk/CrQhQvtJFy/tmuLfhQKNMn/U0vwrRz/dxQ= dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod h1:H6x//7gZCb22OMCxBHrMx7a5I7Hp++hsVxbQ4BYO7hU= filippo.io/edwards25519 v1.0.0 h1:0wAIcmJUqRdI8IJ/3eGi5/HwXZWPujYXXlkrQogz0Ek= filippo.io/edwards25519 v1.0.0/go.mod h1:N1IkdkCkiLB6tki+MYJoSx2JTY9NUlxZE7eHn5EwJns= From ac5eced81648ed613e5c4d61758c8ac1175105df Mon Sep 17 00:00:00 2001 From: Julien Robert Date: Mon, 18 Sep 2023 21:35:37 +0200 Subject: [PATCH 8/8] update changelog --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 627d67c80f0..ea9c2570345 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -38,7 +38,7 @@ Ref: https://keepachangelog.com/en/1.0.0/ ## [Unreleased] -## [v0.50.0-rc.1](https://github.com/cosmos/cosmos-sdk/releases/tag/v0.50.0-rc.1) - 2023-09-18 +## [v0.50.0-rc.1](https://github.com/cosmos/cosmos-sdk/releases/tag/v0.50.0-rc.1) - 2023-09-19 ### Features