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

Bump github.com/cosmos/cosmos-sdk from 0.44.5-patch to 0.50.0-beta.0 #223

Conversation

dependabot[bot]
Copy link

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

Bumps github.com/cosmos/cosmos-sdk from 0.44.5-patch to 0.50.0-beta.0.

Release notes

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

v0.50.0-beta.0

Cosmos SDK v0.50.0-beta.0 Release Notes

There are no release notes for pre-releases.

Please refer to the CHANGELOG for an exhaustive list of changes, and refer to the UPGRADING.md for upgrading your application.

This is the first modular Cosmos SDK version where multiple x/ modules have been extracted as a standalone go module. These modules will be tagged after the final release of the Cosmos SDK. To integrate with the correct pseudo version of those modules, look at simapp go.mod for an example, or use the merge commit of the module bumping PR.

Full Commit History: cosmos/cosmos-sdk@release/v0.47.x...release/v0.50.x

v0.50.0-alpha.1

Cosmos SDK v0.50.0-alpha.1 Release Notes

There are no release notes for pre-releases.

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

Full Commit History: cosmos/cosmos-sdk@release/v0.47.x...release/v0.50.x

v0.50.0-alpha.0

Cosmos SDK v0.50.0-alpha.0 Release Notes

There are no release notes for pre-releases.

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

Full Commit History: cosmos/cosmos-sdk@release/v0.47.x...release/v0.50.x

v0.47.5

Cosmos SDK v0.47.5 Release Notes

💬 Release Discussion

🚀 Highlights

Get ready for v0.50.0 and start integrating with the next Cosmos SDK release.

For this 5th patch release of the v0.47.x line, some of the notable changes include:

  • A new command for importing private keys encoded in hex. This complements the existing import command that supports mnemonic and key files. Use <appd> keys import <name> <hex> to import a private key encoded in hex.
  • A new command, rpc.QueryEventForTxCmd for querying a transaction by its hash and blocking until the transaction is included in a block. It is useful as an alternative to the legacy --broadcast-mode block.

Check out the changelog for an exhaustive list of changes or compare changes from last release.

Refer to the upgrading guide when migrating from v0.46.x to v0.47.0.

... (truncated)

Changelog

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

v0.50.0-beta.0 - 2023-07-19

Features

  • (codec) #17042 Add CollValueV2 which supports encoding of protov2 messages in collections.
  • (baseapp) #16898 Add preFinalizeBlockHook to allow vote extensions persistence.
  • (cli) #16887 Add two new CLI commands: <appd> tx simulate for simulating a transaction; <appd> query block-results for querying CometBFT RPC for block results.
  • (x/gov) #16976 Add failed_reason field to Proposal under x/gov to indicate the reason for a failed proposal. Referenced from #238 under bnb-chain/greenfield-cosmos-sdk.
  • #15970 Enable SIGN_MODE_TEXTUAL.
  • (types) #15958 Add module.NewBasicManagerFromManager for creating a basic module manager from a module manager.
  • (runtime) #15818 Provide logger through depinject instead of appBuilder.
  • (client) #15597 Add status endpoint for clients.
  • (testutil/integration) #15556 Introduce testutil/integration package for module integration testing.
  • (types) #15735 Make ValidateBasic() error method of Msg interface optional. Modules should validate messages directly in their message handlers (RFC 001).
  • (x/genutil) #15679 Allow applications to specify a custom genesis migration function for the genesis migrate command.
  • (client) #15458 Add a CmdContext field to client.Context initialized to cobra command's context.
  • (core) #15133 Implement RegisterServices in the module manager.
  • (x/gov) #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.
  • (x/genutil) #15301 Add application genesis. The genesis is now entirely managed by the application and passed to CometBFT at note instantiation. Functions that were taking a cmttypes.GenesisDoc{} now takes a genutiltypes.AppGenesis{}.
  • (cli) #14659 Added ability to query blocks by events with queries directly passed to Tendermint, which will allow for full query operator support, e.g. >.
  • (x/gov) #14720 Upstream expedited proposals from Osmosis.
  • (x/auth) #14650 Add Textual SignModeHandler. It is however NOT enabled by default, and should only be used for TESTING purposes until SIGN_MODE_TEXTUAL is fully released.
  • (x/crisis) #14588 Use CacheContext() in AssertInvariants().
  • (client) #14342 Add <app> config command is now a sub-command, for setting, getting and migrating Cosmos SDK configuration files.
  • (query) #14468 Implement pagination for collections.
  • (x/distribution) #14322 Introduce a new gRPC message handler, DepositValidatorRewardsPool, that allows explicit funding of a validator's reward pool.
  • #13473 ADR-038: Go plugin system proposal
  • (mempool) #14484 Add priority nonce mempool option for transaction replacement.
  • (x/bank) #14894 Return a human readable denomination for IBC vouchers when querying bank balances. Added a ResolveDenom parameter to types.QueryAllBalancesRequest and --resolve-denom flag to GetBalancesCmd().
  • (runtime) #15547 Allow runtime to pass event core api service to modules
  • (telemetry) #15657 Emit more data (go version, sdk version, upgrade height) in prom metrics
  • (types/module) #15829 Add new endblocker interface to handle valset updates.
  • (core) #14860 Add Precommit and PrepareCheckState AppModule callbacks.
  • (types/simulation) #16074 Add generic SimulationStoreDecoder for modules using collections.
  • (cli) #16209 Make StartCmd more customizable.
  • (types) #16257 Allow setting the base denom in the denom registry.
  • (genutil) #16046 Add "module-name" flag to genutil add-genesis-account to enable intializing module accounts at genesis.

Improvements

  • (all modules) #15901 All core Cosmos SDK modules query commands have migrated to AutoCLI, ensuring parity between gRPC and CLI queries.
  • (types) #16890 Remove GetTxCmd() *cobra.Command and GetQueryCmd() *cobra.Command from module.AppModuleBasic interface.
  • (cli) #16856 Improve simd prune UX by using the app default home directory and set pruning method as first variable argument (defaults to default).
  • (x/authz) #16869 Improve error message when grant not found.
  • (all) #16497 Removed all exported vestiges of sdk.MustSortJSON and sdk.SortJSON.
  • (cli) #16206 Make ABCI handshake profileable.
  • (types) #16076 Optimize ChainAnteDecorators/ChainPostDecorators to instantiate the functions once instead of on every invocation of the returned AnteHandler/PostHandler.
  • (server) #16071 When mempool.max-txs is set to a negative value, use a no-op mempool (effectively disable the app mempool).
  • (simapp) #15958 Refactor SimApp for removing the global basic manager.
  • (crypto) #3129 New armor and keyring key derivation uses aead and encryption uses chacha20poly

... (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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @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)
    You can disable automated security fix PRs for this repo from the Security Alerts page.

Bumps [github.com/cosmos/cosmos-sdk](https://github.com/cosmos/cosmos-sdk) from 0.44.5-patch to 0.50.0-beta.0.
- [Release notes](https://github.com/cosmos/cosmos-sdk/releases)
- [Changelog](https://github.com/cosmos/cosmos-sdk/blob/v0.50.0-beta.0/CHANGELOG.md)
- [Commits](cosmos/cosmos-sdk@v0.44.5-patch...v0.50.0-beta.0)

---
updated-dependencies:
- dependency-name: github.com/cosmos/cosmos-sdk
  dependency-type: direct:production
...

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 Sep 6, 2023
@github-actions
Copy link

This pull request has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

@github-actions github-actions bot added the Stale label Oct 22, 2023
@github-actions github-actions bot closed this Oct 29, 2023
@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github Oct 29, 2023

OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version or @dependabot ignore this minor version.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

@dependabot dependabot bot deleted the dependabot/go_modules/github.com/cosmos/cosmos-sdk-0.50.0-beta.0 branch October 29, 2023 00:19
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 Stale
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants