Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): Bump github.com/cosmos/cosmos-sdk from 0.45.1 to 0.45.2 #756

Merged

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Apr 6, 2022

Bumps github.com/cosmos/cosmos-sdk from 0.45.1 to 0.45.2.

Release notes

Sourced from github.com/cosmos/cosmos-sdk's releases.

v0.45.2

Cosmos SDK v0.45.2 Release Notes

This release introduces bug fixes and improvements on the Cosmos SDK v0.45 series:

Highlights:

  • Add hooks to allow modules to add things to state-sync. Please see [PR #10961](cosmos/cosmos-sdk#10961) for more information.
  • Register EIP191 as an available SignMode for chains to use. Please note that in v0.45.2, the Cosmos SDK does not 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 TxConfig with your own sign mode handler which implements EIP-191, using the new provided authtx.NewTxConfigWithHandler function.
  • Add a new rollback CLI command to perform a state rollback by one block. Read more in [PR #11179](cosmos/cosmos-sdk#11179).
  • Some new queries were added:
    • x/authz: GrantsByGrantee to query grants by grantee,
    • x/bank: SpendableBalances to query an account's total (paginated) spendable balances,
    • TxService: GetBlockWithTxs to fetch a block along with all its transactions, decoded.
  • Some bug fixes, such as:
    • Update the prune everything strategy to store the last two heights.
    • Fix data race in store trace component.
    • Fix cgo secp signature verification and update libscep256k1 library.

See the Cosmos SDK v0.45.2 Changelog for the exhaustive list of all changes and check other fixes in the 0.45.x release series.

Full Commit History: cosmos/cosmos-sdk@v0.45.1...v0.45.2

Changelog

Sourced from github.com/cosmos/cosmos-sdk's changelog.

v0.45.2 - 2022-04-05

Features

  • (tx) #\11533 Register EIP191 as an available SignMode for chains to use.
  • #11430 Introduce a new grpc-only flag, such that when enabled, will start the node in a query-only mode. Note, gRPC MUST be enabled with this flag.
  • (x/bank) #11417 Introduce a new SpendableBalances gRPC query that retrieves an account's total (paginated) spendable balances.
  • (x/bank) #10771 Add safety check on bank module perms to allow module-specific mint restrictions (e.g. only minting a certain denom).
  • (x/bank) #10771 Add bank.BankKeeper.WithMintCoinsRestriction function to restrict use of bank MintCoins usage. This function is not on the bank Keeper interface, so it's not API-breaking, but only additive on the keeper implementation.
  • #10944 x/authz add all grants by grantee query
  • #11124 Add GetAllVersions to application store
  • (x/auth) #10880 Added a new query to the tx query service that returns a block with transactions fully decoded.
  • #11314 Add state rollback command.

Bug Fixes

  • #11354 Added missing pagination flag for bank q total query.
  • #11197 Signing with multisig now works with multisig address which is not in the keyring.
  • (client) #11283 Support multiple keys for tx simulation and setting automatic gas for txs.
  • (store) #11177 Update the prune everything strategy to store the last two heights.
  • (store) #11117 Fix data race in store trace component
  • (x/authz) #11252 Allow insufficient funds error for authz simulation
  • (crypto) #11298 Fix cgo secp signature verification and update libscep256k1 library.

Improvements

  • #9576 Add debug error message to query result when enabled
  • (types) #11200 Added Min() and Max() operations on sdk.Coins.
  • #11267 Add hooks to allow app modules to add things to state-sync (backport #10961).
Commits

Dependabot compatibility score

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 commands and options

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)

Bumps [github.com/cosmos/cosmos-sdk](https://github.com/cosmos/cosmos-sdk) from 0.45.1 to 0.45.2.
- [Release notes](https://github.com/cosmos/cosmos-sdk/releases)
- [Changelog](https://github.com/cosmos/cosmos-sdk/blob/v0.45.2/CHANGELOG.md)
- [Commits](cosmos/cosmos-sdk@v0.45.1...v0.45.2)

---
updated-dependencies:
- dependency-name: github.com/cosmos/cosmos-sdk
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/go_modules/github.com/cosmos/cosmos-sdk-0.45.2 branch from b93be86 to 769435c Compare April 6, 2022 02:34
@mergify mergify bot merged commit 3883d60 into main Apr 6, 2022
@mergify mergify bot deleted the dependabot/go_modules/github.com/cosmos/cosmos-sdk-0.45.2 branch April 6, 2022 02:55
mergify bot pushed a commit that referenced this pull request Apr 6, 2022
…756)

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)
mergify bot pushed a commit that referenced this pull request Apr 6, 2022
…756)

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)
toteki pushed a commit that referenced this pull request Apr 6, 2022
…756) (#761)

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>
toteki pushed a commit that referenced this pull request Apr 6, 2022
…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>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant