Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build(deps): Bump github.com/cosmos/cosmos-sdk from 0.45.1 to 0.45.2 (#…
…756) (#760) Bumps [github.com/cosmos/cosmos-sdk](https://github.com/cosmos/cosmos-sdk) from 0.45.1 to 0.45.2. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/cosmos/cosmos-sdk/releases">github.com/cosmos/cosmos-sdk's releases</a>.</em></p> <blockquote> <h2>v0.45.2</h2> <h1>Cosmos SDK v0.45.2 Release Notes</h1> <p>This release introduces bug fixes and improvements on the Cosmos SDK v0.45 series:</p> <p>Highlights:</p> <ul> <li>Add hooks to allow modules to add things to state-sync. Please see [PR <a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/issues/10961">#10961</a>](<a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/pull/10961">cosmos/cosmos-sdk#10961</a>) for more information.</li> <li>Register <a href="https://eips.ethereum.org/EIPS/eip-191"><code>EIP191</code></a> as an available <code>SignMode</code> for chains to use. Please note that in v0.45.2, the Cosmos SDK does <strong>not</strong> support EIP-191 out of the box. But if your chain wants to integrate EIP-191, it's possible to do so by passing a <code>TxConfig</code> with your own sign mode handler which implements EIP-191, using the new provided <code>authtx.NewTxConfigWithHandler</code> function.</li> <li>Add a new <code>rollback</code> CLI command to perform a state rollback by one block. Read more in [PR <a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/issues/11179">#11179</a>](<a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/pull/11179">cosmos/cosmos-sdk#11179</a>).</li> <li>Some new queries were added: <ul> <li>x/authz: <code>GrantsByGrantee</code> to query grants by grantee,</li> <li>x/bank: <code>SpendableBalances</code> to query an account's total (paginated) spendable balances,</li> <li>TxService: <code>GetBlockWithTxs</code> to fetch a block along with all its transactions, decoded.</li> </ul> </li> <li>Some bug fixes, such as: <ul> <li>Update the prune <code>everything</code> strategy to store the last two heights.</li> <li>Fix data race in store trace component.</li> <li>Fix cgo secp signature verification and update libscep256k1 library.</li> </ul> </li> </ul> <p>See the <a href="https://github.com/cosmos/cosmos-sdk/blob/v0.45.2/CHANGELOG.md">Cosmos SDK v0.45.2 Changelog</a> for the exhaustive list of all changes and check other fixes in the 0.45.x release series.</p> <p><strong>Full Commit History</strong>: <a href="https://github.com/cosmos/cosmos-sdk/compare/v0.45.1...v0.45.2">https://github.com/cosmos/cosmos-sdk/compare/v0.45.1...v0.45.2</a></p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/cosmos/cosmos-sdk/blob/v0.45.2/CHANGELOG.md">github.com/cosmos/cosmos-sdk's changelog</a>.</em></p> <blockquote> <h2><a href="https://github.com/cosmos/cosmos-sdk/releases/tag/v0.45.2">v0.45.2</a> - 2022-04-05</h2> <h3>Features</h3> <ul> <li>(tx) <a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/pull/11533">#\11533</a> Register <a href="https://eips.ethereum.org/EIPS/eip-191"><code>EIP191</code></a> as an available <code>SignMode</code> for chains to use.</li> <li><a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/pull/11430">#11430</a> Introduce a new <code>grpc-only</code> flag, such that when enabled, will start the node in a query-only mode. Note, gRPC MUST be enabled with this flag.</li> <li>(x/bank) <a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/pull/11417">#11417</a> Introduce a new <code>SpendableBalances</code> gRPC query that retrieves an account's total (paginated) spendable balances.</li> <li>(x/bank) <a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/pull/10771">#10771</a> Add safety check on bank module perms to allow module-specific mint restrictions (e.g. only minting a certain denom).</li> <li>(x/bank) <a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/pull/10771">#10771</a> Add <code>bank.BankKeeper.WithMintCoinsRestriction</code> function to restrict use of bank <code>MintCoins</code> usage. This function is not on the bank <code>Keeper</code> interface, so it's not API-breaking, but only additive on the keeper implementation.</li> <li><a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/pull/10944">#10944</a> <code>x/authz</code> add all grants by grantee query</li> <li><a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/pull/11124">#11124</a> Add <code>GetAllVersions</code> to application store</li> <li>(x/auth) <a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/pull/10880">#10880</a> Added a new query to the tx query service that returns a block with transactions fully decoded.</li> <li><a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/pull/11314">#11314</a> Add state rollback command.</li> </ul> <h3>Bug Fixes</h3> <ul> <li><a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/pull/11355">#11354</a> Added missing pagination flag for <code>bank q total</code> query.</li> <li><a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/pull/11197">#11197</a> Signing with multisig now works with multisig address which is not in the keyring.</li> <li>(client) <a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/issues/11283">#11283</a> Support multiple keys for tx simulation and setting automatic gas for txs.</li> <li>(store) <a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/pull/11177">#11177</a> Update the prune <code>everything</code> strategy to store the last two heights.</li> <li>(store) <a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/pull/11117">#11117</a> Fix data race in store trace component</li> <li>(x/authz) <a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/pull/11252">#11252</a> Allow insufficient funds error for authz simulation</li> <li>(crypto) <a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/pull/11298">#11298</a> Fix cgo secp signature verification and update libscep256k1 library.</li> </ul> <h3>Improvements</h3> <ul> <li><a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/pull/9576">#9576</a> Add debug error message to query result when enabled</li> <li>(types) <a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/pull/11200">#11200</a> Added <code>Min()</code> and <code>Max()</code> operations on sdk.Coins.</li> <li><a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/pull/11267">#11267</a> Add hooks to allow app modules to add things to state-sync (backport <a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/issues/10961">#10961</a>).</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/cosmos/cosmos-sdk/commit/9494992bd0ea487ef56984167b355e5ac770c506"><code>9494992</code></a> chore: v0.45.2 Release Notes (<a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/issues/11546">#11546</a>)</li> <li><a href="https://github.com/cosmos/cosmos-sdk/commit/7f8cbfddb44ebdfc42d20b75261de256e4e48924"><code>7f8cbfd</code></a> feat: EIP191 sign mode (backport <a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/issues/11533">#11533</a>) (<a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/issues/11545">#11545</a>)</li> <li><a href="https://github.com/cosmos/cosmos-sdk/commit/f43228dee8afc4e5d24413e34249fe50233b89fe"><code>f43228d</code></a> feat: add grants by grantee authz query (backport <a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/issues/10944">#10944</a>) (<a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/issues/11523">#11523</a>)</li> <li><a href="https://github.com/cosmos/cosmos-sdk/commit/344fd73b0b811fe99b2201623b5036e8e08f4330"><code>344fd73</code></a> feat: grpc-only mode (backport <a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/issues/11430">#11430</a>) (<a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/issues/11460">#11460</a>)</li> <li><a href="https://github.com/cosmos/cosmos-sdk/commit/7997b263bca6bdf831a8b39231febe4e9aa1c06e"><code>7997b26</code></a> feat: add support for spendable balances gRPC query (backport <a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/issues/11417">#11417</a>) (<a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/issues/11459">#11459</a>)</li> <li><a href="https://github.com/cosmos/cosmos-sdk/commit/160a103bd92395c0dbb8bbcec327d5222766463c"><code>160a103</code></a> fix: Update query.go to include pagination for bank q totals (<a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/issues/11355">#11355</a>) (<a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/issues/11375">#11375</a>)</li> <li><a href="https://github.com/cosmos/cosmos-sdk/commit/69f227ec8ad58fc62b05dccd5a1dad1341b3c05c"><code>69f227e</code></a> fix: multisig works with only multisig name as argument, not its address (bac...</li> <li><a href="https://github.com/cosmos/cosmos-sdk/commit/a4644a3797e760555e8bbf67c92536fb4e8485fa"><code>a4644a3</code></a> fix: cgosecp256k1 verification (backport <a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/issues/11298">#11298</a>) (<a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/issues/11360">#11360</a>)</li> <li><a href="https://github.com/cosmos/cosmos-sdk/commit/b073f35f822788318ac43c490006f306dd235246"><code>b073f35</code></a> fix: remove hardcoded pubkey from tx simulation (backport <a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/issues/11282">#11282</a>) (<a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/issues/11288">#11288</a>)</li> <li><a href="https://github.com/cosmos/cosmos-sdk/commit/11bda928d8151e995c46d299274bc18db80b5c40"><code>11bda92</code></a> fix(types): use correct bit length constant for sdk.Dec (backport <a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/issues/11332">#11332</a>) (<a href="https://github-redirect.dependabot.com/cosmos/cosmos-sdk/issues/1">#1</a>...</li> <li>Additional commits viewable in <a href="https://github.com/cosmos/cosmos-sdk/compare/v0.45.1...v0.45.2">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/cosmos/cosmos-sdk&package-manager=go_modules&previous-version=0.45.1&new-version=0.45.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> (cherry picked from commit 3883d60) Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
- Loading branch information