chore: prepare v0.47.3 (#16248)
This commit is contained in:
parent
2e70efc10a
commit
2cd72b74ba
|
@ -2,6 +2,8 @@ run:
|
|||
tests: false
|
||||
# timeout for analysis, e.g. 30s, 5m, default is 1m
|
||||
timeout: 5m
|
||||
skip-files:
|
||||
- server/grpc/gogoreflection/serverreflection.go
|
||||
|
||||
linters:
|
||||
disable-all: true
|
||||
|
|
|
@ -37,6 +37,8 @@ Ref: https://keepachangelog.com/en/1.0.0/
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## [v0.47.3](https://github.com/cosmos/cosmos-sdk/releases/tag/v0.47.3) - 2023-06-05
|
||||
|
||||
### Features
|
||||
|
||||
* (baseapp) [#16290](https://github.com/cosmos/cosmos-sdk/pull/16290) Add circuit breaker setter in baseapp.
|
||||
|
@ -51,7 +53,7 @@ Ref: https://keepachangelog.com/en/1.0.0/
|
|||
* (gov) [#15979](https://github.com/cosmos/cosmos-sdk/pull/15979) Improve gov error message when failing to convert v1 proposal to v1beta1.
|
||||
* (store) [#16067](https://github.com/cosmos/cosmos-sdk/pull/16067) Add local snapshots management commands.
|
||||
* (server) [#16061](https://github.com/cosmos/cosmos-sdk/pull/16061) Add Comet bootstrap command.
|
||||
* (snapshots) [#16060](https://github.com/cosmos/cosmos-sdk/pull/16060) Support saving restoring snapshot locally.
|
||||
* (snapshots) [#16060](https://github.com/cosmos/cosmos-sdk/pull/16060) Support saving and restoring snapshot locally.
|
||||
* (x/staking) [#16068](https://github.com/cosmos/cosmos-sdk/pull/16068) Update simulation to allow non-EOA accounts to stake.
|
||||
* (server) [#16142](https://github.com/cosmos/cosmos-sdk/pull/16142) Remove JSON Indentation from the GRPC to REST gateway's responses. (Saving bandwidth)
|
||||
* (types) [#16145](https://github.com/cosmos/cosmos-sdk/pull/16145) Rename interface `ExtensionOptionI` back to `TxExtensionOptionI` to avoid breaking change.
|
||||
|
|
|
@ -1,17 +1,17 @@
|
|||
# Cosmos SDK v0.47.2 Release Notes
|
||||
# Cosmos SDK v0.47.3 Release Notes
|
||||
|
||||
💬 [**Release Discussion**](https://github.com/cosmos/community)
|
||||
|
||||
## 📝 Changelog
|
||||
|
||||
Check out the [changelog](https://github.com/cosmos/cosmos-sdk/blob/v0.47.2/CHANGELOG.md) for an exhaustive list of changes or [compare changes](https://github.com/cosmos/cosmos-sdk/compare/release/v0.47.1...v0.47.2) from last release.
|
||||
|
||||
Refer to the [upgrading guide](https://github.com/cosmos/cosmos-sdk/blob/release/v0.47.x/UPGRADING.md) when migrating from `v0.46.x` to `v0.47.0`.
|
||||
💬 [**Release Discussion**](https://github.com/orgs/cosmos/discussions/categories/announcements)
|
||||
|
||||
## 🚀 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](https://github.com/cosmos/cosmos-sdk/releases/tag/v0.47.0).
|
||||
For this third patch release of the `v0.47.x` line, some of the notable changes include:
|
||||
|
||||
Notably, [a fix](https://github.com/cosmos/cosmos-sdk/pull/15683) for loading archival states (thank you @catShaark).
|
||||
Additionally, the release fixes an issue where querying previous block heights would return an incorrect timestamp.
|
||||
* A command to be able to bootstrap comet from a local snapshot with [`<app> comet bootstrap-state`](https://docs.cosmos.network/v0.47/run-node/run-node#local-state-sync).
|
||||
* 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](https://github.com/cosmos/cosmos-sdk/blob/v0.47.3/CHANGELOG.md) for an exhaustive list of changes or [compare changes](https://github.com/cosmos/cosmos-sdk/compare/release/v0.47.2...v0.47.3) from last release.
|
||||
|
||||
Refer to the [upgrading guide](https://github.com/cosmos/cosmos-sdk/blob/release/v0.47.x/UPGRADING.md) when migrating from `v0.46.x` to `v0.47.0`.
|
||||
|
|
2
go.mod
2
go.mod
|
@ -182,6 +182,8 @@ replace (
|
|||
)
|
||||
|
||||
retract (
|
||||
// revert fix https://github.com/cosmos/cosmos-sdk/pull/16331
|
||||
v0.46.12
|
||||
// subject to a bug in the group module and gov module migration
|
||||
[v0.46.5, v0.46.6]
|
||||
// subject to the dragonberry vulnerability
|
||||
|
|
|
@ -299,8 +299,9 @@ func interceptConfigs(rootViper *viper.Viper, customAppTemplate string, customCo
|
|||
// add server commands
|
||||
func AddCommands(rootCmd *cobra.Command, defaultNodeHome string, appCreator types.AppCreator, appExport types.AppExporter, addStartFlags types.ModuleInitFlags) {
|
||||
tendermintCmd := &cobra.Command{
|
||||
Use: "tendermint",
|
||||
Short: "Tendermint subcommands",
|
||||
Use: "tendermint",
|
||||
Aliases: []string{"comet", "cometbft"},
|
||||
Short: "Tendermint subcommands",
|
||||
}
|
||||
|
||||
tendermintCmd.AddCommand(
|
||||
|
|
Loading…
Reference in New Issue