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

chore(deps): bump github.com/cosmos/cosmos-sdk from 0.45.16-ics to 0.50.0-alpha.0 #2579

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jun 12, 2023

Bumps github.com/cosmos/cosmos-sdk from 0.45.16-ics to 0.50.0-alpha.0.

Release notes

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

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

Cosmos SDK v0.47.3 Release Notes

💬 Release Discussion

🚀 Highlights

Missed the v0.47.0 announcement? Read it here. For this third patch release of the v0.47.x line, some of the notable changes include:

  • The barberry security vulnerability is resolved. All chains using Cosmos SDK v0.47.0-v0.47.2 are advised to upgrade to v0.47.3 immediately. A chain is not affected by the vulnerability as soon as 33%+1 of the voting power has upgraded. A chain is safe from halting as soon as 66%+1 of the voting power has upgraded. Coordinate with your validators to upgrade as soon as possible. The upgrade can be applied as a rolling upgrade across the validators or as a coordinated upgrade. Networks should decide which option gets them upgraded quicker.
  • A command to be able to bootstrap comet from a local snapshot with <app> comet bootstrap-state.
  • Commands to manage snapshots: Add snapshot.Cmd(appCreator) to your chain root command for using them.
  • The default logger is now cosmossdk.io/log, which supports coloring 🟥🟩🟪🟦 and filtering again.
  • A bug fix in x/group migration. Chains migrating from v0.46.x to v0.47.x must use at least v0.47.3.

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.

v0.47.2

Cosmos SDK v0.47.2 Release Notes

💬 Release Discussion

📝 Changelog

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.

🚀 Highlights

For this second patch release of the v0.47.x line, we focused on fixing bugs and improving the developer experience. Missed the v0.47.0 announcement? Read it here.

Notably, a fix for loading archival states (thank you @​catShaark). Additionally, the release fixes an issue where querying previous block heights would return an incorrect timestamp.

... (truncated)

Changelog

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

v0.50.0-alpha.0 - 2023-06-07

Features

  • #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

  • (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
  • (x/slashing) #15580 Refactor the validator's missed block signing window to be a chunked bitmap instead of a "logical" bitmap, significantly reducing the storage footprint.
  • (x/gov) #15554 Add proposal result log in active_proposal event. When a proposal passes but fails to execute, the proposal result is logged in the active_proposal event.
  • (mempool) #15328 Improve the PriorityNonceMempool
    • Support generic transaction prioritization, instead of ctx.Priority()
    • Improve construction through the use of a single PriorityNonceMempoolConfig instead of option functions
  • (x/authz) #15164 Add MsgCancelUnbondingDelegation to staking authorization
  • (server) #15358 Add server.InterceptConfigsAndCreateContext as alternative to server.InterceptConfigsPreRunHandler which does not set the server context and the default SDK logger.
  • #15011 Introduce cosmossdk.io/log package to provide a consistent logging interface through the SDK. CometBFT logger is now replaced by cosmossdk.io/log.Logger.
  • (x/auth) #14758 Allow transaction event queries to directly passed to Tendermint, which will allow for full query operator support, e.g. >.
  • (server) #15041 Remove unnecessary sleeps from gRPC and API server initiation. The servers will start and accept requests as soon as they're ready.

... (truncated)

Commits
  • 2100a73 fix: StateSync Restore by excluding memory store (backport #16449) (#16451)
  • 4eea902 chore: prepare v0.50 alpha (#16446)
  • 7723367 feat(x/feegrant): feegrant autcli module query (backport #16213) (#16448)
  • d0e1a9b build: remove replaces in modules before 0.50 alpha (#16445)
  • cfeb102 chore: prepare core,tx,collections changelogs and update mergify config for v...
  • 393af6c refactor(x/auth): clean up signing init code for reusability (#16433)
  • 82adcea test: deduplicate e2e tests (#16356)
  • 7f44ecb refactor(x/circuit)!: Use collections, KVStoreService, and context.Context (#...
  • 8ced14d build(deps): Bump github.com/cometbft/cometbft from 0.38.0-alpha.2 to 0.38.0-...
  • 3e18f40 feat: update store module for new iavl (#15568)
  • 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.45.16-ics to 0.50.0-alpha.0.
- [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.45.16-ics...v0.50.0-alpha.0)

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

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Jun 12, 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. You can also ignore all major, minor, or patch releases for a dependency by adding an ignore condition with the desired update_types to your config file.

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-alpha.0 branch June 12, 2023 11:23
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A:automerge dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant