-
Notifications
You must be signed in to change notification settings - Fork 3.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Changelog and RL for v0.42.5 (#9350)
* Update Changelog and RL for v0.42.5 * Reword * Tweak
- Loading branch information
1 parent
5531aaf
commit 1327224
Showing
2 changed files
with
31 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,25 @@ | ||
# Cosmos SDK v0.42.4 "Stargate" Release Notes | ||
# Cosmos SDK v0.42.5 "Stargate" Release Notes | ||
|
||
This release includes an important Tendermint update that fixes a security issue with Tendermint light clients. For more information, see [Tendermint v0.34.9 release notes](https://github.com/tendermint/tendermint/blob/v0.34.9/CHANGELOG.md#v0.34.9). | ||
This release includes various minor bugfixes and improvments, including: | ||
|
||
See the [Cosmos SDK v0.42.4 milestone](https://github.com/cosmos/cosmos-sdk/milestone/43?closed=1) on our issue tracker for further details. | ||
- Fix support for building the Cosmos SDK on ARM architectures, | ||
- Fix the `[appd] keys show/list` CLI subcommands for multisigs, | ||
- Internal code performance improvment. | ||
|
||
It also introduces one new feature: adding the `[appd] config` subcommand back to the SDK. | ||
|
||
See the [Cosmos SDK v0.42.5 milestone](https://github.com/cosmos/cosmos-sdk/milestone/44?closed=1) on our issue tracker for the exhaustive list of all changes. | ||
|
||
### The `config` Subcommand | ||
|
||
One new feature introduced in the Stargate series was the merging of the two CLI binaries `[appd]` and `[appcli]` into one single application binary. In this process, the `[appcli] config` subcommand, which was used to save client-side configuration into a TOML file, was removed. | ||
|
||
Due to [popular demand](https://github.com/cosmos/cosmos-sdk/issues/8529), we have introduced this feature back to the SDK, under the `[appd] config` subcommand. The functionality is as follows: | ||
|
||
- `[appd] config`: Output all client-side configuration. | ||
- `[appd] config [config-name]`: Get the given configuration (e.g. `keyring-backend` or `node-id`). | ||
- `[appd] config [config-name] [config-value]`: Set and persist the given configuration with the new value. | ||
|
||
All configurations are persisted to the filesystem, under the path `$APP_HOME/config/client.toml`. For the list of all possible client-side configurations, please have a look at this `client.toml` file, as it is heavily commented. | ||
|
||
Environment variables binding to client-side configuration also works. For example, the command `KEYRING_BACKEND=os [appd] tx bank send ...` will bind ENV variable to the `keyring-backend` config. The order or precedence for config is: `flags > env vars > client.toml file`. |