Skip to content

Conversation

@dependabot
Copy link

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

Bumps github.com/cosmos/cosmos-sdk from 0.44.3 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

v0.45.1

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

Highlights

  • Added the missing iavl-cache-size config parameter parsing to set a desired IAVL cache size. The default value is way to small for big chains, and causes OOM failures.
  • Added a check in x/upgrade module's BeginBlock preventing accidental binary downgrades
  • Fix: the /cosmos/tx/v1beta1/txs/{hash} endpoint returns correct return code (404) for a non existing tx.

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

Full Diff: cosmos/cosmos-sdk@v0.45.0...v0.45.1

Cosmos SDK v0.45.0 is a logical continuation of the v0.44.* series, but brings a couple of state- and API-breaking changes requested by the community.

State-Breaking Changes

There are few important changes in gas consumption, which improve the gas economics:

  • We now charge gas in two new places: on .Seek() even if there are no entries, and for the key length (on top of the value length).
  • When block gas limit is exceeded, we consume the maximum gas possible (to charge for the performed computation). We also fixed the bug when the last transaction in a block exceeds the block gas limit, it returns an error result, but the tx is actually committed successfully.

Finally, a small improvement in gov, we increased the maximum proposal description size from 5k characters to 10k characters.

API-Breaking Changes

  • The BankKeeper interface has a new HasSupply method to ensure that input denom actually exists on chain.

... (truncated)

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).

v0.45.1 - 2022-02-03

Bug Fixes

  • (grpc) #10985 The /cosmos/tx/v1beta1/txs/{hash} endpoint returns a 404 when a tx does not exist.
  • #10990 Fixes missing iavl-cache-size config parsing in GetConfig method.
  • #11222 reject query with block height in the future

Improvements

  • #10407 Added validation to x/upgrade module's BeginBlock to check accidental binary downgrades
  • #10768 Extra logging in in-place store migrations.

v0.45.0 - 2022-01-18

State Machine Breaking

  • #10833 fix reported tx gas used when block gas limit exceeded.
  • (auth) #10536 Enable SetSequence for ModuleAccount.
  • (store) #10218 Charge gas even when there are no entries while seeking.

... (truncated)

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.44.3 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.44.3...v0.45.2)

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

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels Apr 6, 2022
@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github Apr 12, 2022

Superseded by #66.

@dependabot dependabot bot closed this Apr 12, 2022
@dependabot dependabot bot deleted the dependabot/go_modules/github.com/cosmos/cosmos-sdk-0.45.2 branch April 12, 2022 13:18
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file go Pull requests that update Go code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants