Skip to content
Snippets Groups Projects
Commit cdc129ad authored by Nicolas80's avatar Nicolas80
Browse files

Added new version 0.4.3-RC1 changelogs for Release Candidate.

parent f4e7026a
Branches
Tags v1.36.4
1 merge request!46Json output
Pipeline #40625 passed
...@@ -3,6 +3,40 @@ ...@@ -3,6 +3,40 @@
List of changelogs ordered from latest to oldest List of changelogs ordered from latest to oldest
## [0.4.3-RC1] - 2025-05-17
### Added / Changed
- Added support of `json` output for most commands through the usage of the global `-o`/ `--output-format` argument (to be given before any command).
- The default output remains the `human` format.
- Added possibility to use `vault inspect` command without interactive prompts (when providing all necessary arguments)
- To have a clean `json` output; those commands should be called with all necessary arguments so that no interactive prompt is required; which then allows to pipe the result to other commands like `jq`
- Example usage:
```shell
gcli -o json vault inspect -v predef-sr//Alice --no-password | jq
{
"substrate_uri": "bottom drive obey lake curtain smoke basket hold race lonely fit walk//Alice",
"crypto_scheme": "sr25519",
"secret_seed": "e5be9a5092b81bca64be81d212e7f2f9eba183bb7a90954f7b76361f6edb5c0a",
"public_key_hex": "d43593c715fdd31c61141abd04a99fd6822c8558854ccde39a5684e7a56da27d",
"ss58_address": "5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY",
"g1v1_public_key": null
}
```
### Fixed
- None
### Deprecated
- Two commands are still deprecated and will be removed in a future release:
- `gcli vault list-files`
- `gcli vault migrate`
### Removed
- None
### CI/CD
- None
## [0.4.2] - 2025-05-16 ## [0.4.2] - 2025-05-16
### Added / Changed ### Added / Changed
- Extra command `completion` added which takes a `--shell` argument to generate a completions script for a specified shell. - Extra command `completion` added which takes a `--shell` argument to generate a completions script for a specified shell.
......
...@@ -2353,7 +2353,7 @@ dependencies = [ ...@@ -2353,7 +2353,7 @@ dependencies = [
[[package]] [[package]]
name = "gcli" name = "gcli"
version = "0.4.2" version = "0.4.3-RC1"
dependencies = [ dependencies = [
"age", "age",
"anyhow", "anyhow",
......
...@@ -10,7 +10,7 @@ license = "AGPL-3.0-only" ...@@ -10,7 +10,7 @@ license = "AGPL-3.0-only"
name = "gcli" name = "gcli"
repository = "https://git.duniter.org/clients/rust/gcli-v2s" repository = "https://git.duniter.org/clients/rust/gcli-v2s"
description = "A command-line interface for Duniter v2s uses" description = "A command-line interface for Duniter v2s uses"
version = "0.4.2" version = "0.4.3-RC1"
[dependencies] [dependencies]
# subxt is main dependency # subxt is main dependency
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment