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.47.0-rc1 to 0.47.0-rc3 in /x/circuit #271

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Mar 6, 2023

Bumps github.com/cosmos/cosmos-sdk from 0.47.0-rc1 to 0.47.0-rc3.

Release notes

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

v0.47.0-rc3

Cosmos SDK v0.47.0-rc3 Release Notes

Cosmos SDK v0.47.0-rc3 contains all the features and changes that are planned for the final v0.47.0 release. This release candidate is intended to give application developers and validator operators a chance to test the release candidate before the final release.

The main changes in this release are:

  • Upgrade to CometBFT v0.37.0.

    • With the notable introduction of ABCI 1.0.
    • Changes of events keys and values from []byte to string.
  • Support of ABCI 1.0 in the SDK.

    • Allows chains to set their own mempool implementation.
    • Support of the new PrepareProposal and ProcessProposal ABCI methods.
  • Deprecation of the x/params module.

    • Modules params are now handled directly by the modules themselves, with the message MsgUpdateParams.
    • All core modules have migrated away from x/params. It is recommended to migrate your custom modules as well.
  • Migration from gogo/protobuf to cosmos/gogoproto.

    • The SDK was using the now unmaintained gogo/protobuf library. This has been replaced by cosmos/gogoproto which is a fork of gogo/protobuf with some improvements and fixes, that is maintained by the Cosmos SDK team.
    • This change is not transparent for applications developers. All proto files should be regenerated with the new library.
    • Please use the ghcr.io/cosmos/proto-builder image (version >= 0.11.2) for generating protobuf files.
  • Dependency Injection / App Wiring

    • App Wiring is ready for community feedback and testing. It allows to build a chain with less boilerplate by removing the need to manually wire a chain.
    • Community feedback will be implemented in the following releases which can lead to API breakage (runtime and depinject are pre-1.0).
    • Manually wiring an application is still possible and will always remain supported.
  • Removal of the proposer-based rewards from x/distribution.

    • This removes unfairness towards smaller validators.
  • Re-addition of title and summary fields on group and gov proposals.

    • In v0.46 with x/gov v1, these fields were not present (while present in v1beta1). After community feedback, they have been added in x/gov v1.
  • Refactoring of tests in the SDK and addition of the simtestutil package, for facilitating testing without depending on simapp.

    • Any dependencies on simapp in an application must be removed going forward.

Refer to the UPGRADING.md for upgrading your application. Please see the CHANGELOG for an exhaustive list of changes.

Full Commit History (previous version): cosmos/cosmos-sdk@release/v0.46.x...release/v0.47.x Full Commit History (rc2..rc3): cosmos/cosmos-sdk@v0.47.0-rc2...v0.47.0-rc3

v0.47.0-rc2

Cosmos SDK v0.47.0-rc2 Release Notes

Cosmos SDK v0.47.0-rc2 contains all the features and changes that are planned for the final v0.47.0 release. This release candidate is intended to give application developers and validator operators a chance to test the release candidate before the final release.

... (truncated)

Changelog

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

[v0.47.0-rc3]

Features

  • (client) #14509 Added AddKeyringFlags function.
  • (x/bank) #14045 Add CLI command spendable-balances, which also accepts the flag --denom.
  • (x/slashing, x/staking) #14363 Add the infraction a validator commited type as an argument to a SlashWithInfractionReason keeper method.
  • (x/genutil) #14149 Add genutilcli.GenesisCoreCommand command, which contains all genesis-related sub-commands.
  • (x/evidence) #13740 Add new proto field hash of type string to QueryEvidenceRequest which helps to decode the hash properly while using query API.
  • (core) #13306 Add a FormatCoins function to in core/coins to format sdk Coins following the Value Renderers spec.
  • (math) #13306 Add FormatInt and FormatDec functiosn in math to format integers and decimals following the Value Renderers spec.
  • (x/staking) #13122 Add UnbondingCanComplete and PutUnbondingOnHold to x/staking module.
  • #13437 Add new flag --modules-to-export in simd export command to export only selected modules.
  • #13298 Add AddGenesisAccount helper func in x/auth module which helps adding accounts to genesis state.
  • (x/authz) #12648 Add an allow list, an optional list of addresses allowed to receive bank assets via authz MsgSend grant.
  • (sdk.Coins) #12627 Make a Denoms method on sdk.Coins.
  • (testutil) #12973 Add generic testutil.RandSliceElem function which selects a random element from the list.
  • (client) #12936 Add capability to preprocess transactions before broadcasting from a higher level chain.
  • (cli) #13064 Add debug prefixes to list supported HRP prefixes via .
  • (ledger) #12935 Generalize Ledger integration to allow for different apps or keytypes that use SECP256k1.
  • (x/bank) #11981 Create the SetSendEnabled endpoint for managing the bank's SendEnabled settings.
  • (x/auth) #13210 Add Query/AccountInfo endpoint for simplified access to basic account info.
  • (x/consensus) #12905 Create a new x/consensus module that is now responsible for maintaining Tendermint consensus parameters instead of x/param. Legacy types remain in order to facilitate parameter migration from the deprecated x/params. App developers should ensure that they execute baseapp.MigrateParams during their chain upgrade. These legacy types will be removed in a future release.
  • (client/tx) #13670 Add validation in BuildUnsignedTx to prevent simple inclusion of valid mnemonics

Improvements

  • #13236 Integrate Filter Logging
  • (tools) #14793 Dockerfile optimization.
  • (x/gov) #13010 Partial cherry-pick of this issue for adding proposer migration.
  • (events) #14691 Change behavior of sdk.StringifyEvents to not flatten events attributes by events type.
    • This change only affects ABCI message logs, and not the actual events.
  • (api) #14692 Improve RPC queries error message when app is at height 0.
  • (docs) #14017 Simplify ADR-028 and address.Module.
    • This updates the ADR-028 and enhance the address.Module API to support module addresses and sub-module addresses in a backward compatible way.
  • (snapshots) #14608 Deprecate unused structs SnapshotKVItem and SnapshotSchema.
  • (x/group, x/gov) #14483 Add support for []string and []int in draft-proposal prompt.
  • (protobuf) #14476 Clean up protobuf annotations {accepts,implements}_interface.
  • (x/gov, x/group) #14472 The recommended metadata format for x/gov and x/group proposals now uses an array of strings (instead of a single string) for the authors field.
  • (crypto) #14460 Check the signature returned by a ledger device against the public key in the keyring.
  • (baseapp) #14356 Add events.GetAttributes and event.GetAttribute methods to simplify the retrieval of an attribute from event(s).
  • (types) #14332 Reduce state export time by 50%.
  • (types) #14163 Refactor (coins Coins) Validate() to avoid unnecessary map.
  • (api) #13882 Add tx encode and decode endpoints to amino tx service.

    Note: These endpoints encodes and decodes only amino txs.

  • (x/nft) #13836 Remove the validation for classID and nftID from the NFT module.
  • (api) #13789 Add tx encode and decode endpoints to tx service.

    Note: These endpoints will only encode and decode proto messages, Amino encoding and decoding is not supported.

  • (log) #13619 Add new function called LogDeferred to report errors in defers.
  • (tools) #13603 Rename cosmovisor package name to cosmossdk.io/tools/cosmovisor. The new tool directory contains Cosmos SDK tools.

... (truncated)

Commits
  • 17134bd chore: bump cometbft to v0.37.0-rc3 (backport #15220) (#15222)
  • ffedca8 refactor: add burnable params to governance (backport #15151) (#15218)
  • 546b298 build(deps): Bump github.com/cosmos/gogoproto from 1.4.4 to 1.4.6 (#15199)
  • 54240ec build(deps): Bump github.com/cosmos/cosmos-proto from 1.0.0-beta.1 to 1.0.0-b...
  • a6adb08 fix: Make WithBlockTime() consistent with CometBFT canonical time (backport #...
  • b123507 docs: set proper v0.47.x buf commit (backport #15142) (#15143)
  • c830dad build(deps): bump to tagged version of CometBFT in v0.47 (#15119)
  • 2dc33a5 chore: UX Mempool Tweaks (backport #15121) (#15122)
  • 9c32873 feat(mempool): priority nonce mempool option with tx replacement (backport #1...
  • b6de22a build(deps): Bump cosmossdk.io/api from 0.3.0 to 0.3.1 (#15103)
  • Additional commits viewable in compare view

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.47.0-rc1 to 0.47.0-rc3.
- [Release notes](https://github.com/cosmos/cosmos-sdk/releases)
- [Changelog](https://github.com/cosmos/cosmos-sdk/blob/main/CHANGELOG.md)
- [Commits](cosmos/cosmos-sdk@v0.47.0-rc1...v0.47.0-rc3)

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

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Mar 6, 2023
@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github Mar 6, 2023

The following labels could not be found: A:automerge.

@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github Mar 20, 2023

Superseded by #305.

@dependabot dependabot bot closed this Mar 20, 2023
@dependabot dependabot bot deleted the dependabot/go_modules/x/circuit/github.com/cosmos/cosmos-sdk-0.47.0-rc3 branch March 20, 2023 13:04
mattverse pushed a commit that referenced this pull request Jul 5, 2023
* Bring back the cliff vesting command osmosis-labs#111

* Wrap error
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
C:x/circuit dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants